From ee824c129b0379d5225678a043a5cd7193ba0b09 Mon Sep 17 00:00:00 2001 From: walter253 <130906143+walt253@users.noreply.github.com> Date: Tue, 26 Nov 2024 13:13:04 +0100 Subject: [PATCH] cubes_properties_flags uses numbers fix the NamedCommand --- src/config_cubes.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config_cubes.c b/src/config_cubes.c index 381dbc6463..6b0a420a08 100644 --- a/src/config_cubes.c +++ b/src/config_cubes.c @@ -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}, };