Magic-number elimination.

This commit is contained in:
Eric S. Raymond 2023-03-14 12:51:26 -04:00
parent 9b89dd2829
commit 786832210e

2
init.c
View file

@ -95,7 +95,7 @@ int initialise(void)
game.tally = game.tally - game.prop[treasure]; game.tally = game.tally - game.prop[treasure];
} }
} }
game.conds = setbit(11); game.conds = setbit(COND_HBASE);
return seedval; return seedval;
} }