From 786832210eba05e5fbc926b2ed850acb599c53ef Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 14 Mar 2023 12:51:26 -0400 Subject: [PATCH] Magic-number elimination. --- init.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.c b/init.c index 9333df3..b890fba 100644 --- 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; } -- 2.31.1