Skip to content

Commit

Permalink
cubes_properties_flags uses numbers
Browse files Browse the repository at this point in the history
fix the NamedCommand
  • Loading branch information
walt253 authored Nov 26, 2024
1 parent 2edfa56 commit ee824c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config_cubes.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ const struct NamedCommand cubes_cube_commands[] = {
};

const struct NamedCommand cubes_properties_flags[] = {
{"LAVA", CPF_IsLava},
{"WATER", CPF_IsWater},
{"SACRIFICIAL", CPF_IsSacrificial},
{"UNCLAIMED_PATH", CPF_IsUnclaimedPath},
{"LAVA", 1},
{"WATER", 2},
{"SACRIFICIAL", 3},
{"UNCLAIMED_PATH", 4},
{NULL, 0},
};

Expand Down

0 comments on commit ee824c1

Please sign in to comment.