Magic-number elimination.
authorEric S. Raymond <esr@thyrsus.com>
Tue, 14 Mar 2023 16:51:26 +0000 (12:51 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Tue, 14 Mar 2023 18:58:26 +0000 (14:58 -0400)
init.c

diff --git a/init.c b/init.c
index 9333df3be8e90d6a7549447cd565e6da20e4f57d..b890fbacc078c9f38efa51b9f990112a788eca54 100644 (file)
--- a/init.c
+++ b/init.c
@@ -95,7 +95,7 @@ int initialise(void)
             game.tally = game.tally - game.prop[treasure];
         }
     }
-    game.conds = setbit(11);
+    game.conds = setbit(COND_HBASE);
 
     return seedval;
 }