X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=init.c;h=d7789ad7ce85aa17a9f23bb4b0d9165107a26e7e;hb=1e59d6b476a7f7f7b169a99e4918a4a2a1afb9cb;hp=0e52a32c5ce3d66b35f0cf3743d0675c07e32d3a;hpb=c84d37091899d4bfcd747dd4afd182d81c3720b3;p=open-adventure.git diff --git a/init.c b/init.c index 0e52a32..d7789ad 100644 --- a/init.c +++ b/init.c @@ -352,16 +352,10 @@ void initialise(void) * game.limit Lifetime of lamp (not set here) * maximum_deaths Number of reincarnation messages available (up to 5) * game.numdie Number of times killed so far - * game.thresh Next #turns threshhold (-1 if none) - * game.trndex Index in TRNVAL of next threshold (db section 14) * game.trnluz # points lost so far due to number of turns used * game.turns Tallies how many commands he's given (ignores yes/no) * Logicals were explained earlier */ game.turns = 0; - game.trndex = 1; - game.thresh = -1; - if (TRNVLS > 0) - game.thresh = MOD(TRNVAL[1], 100000) + 1; game.trnluz = 0; game.lmwarn = false; game.iwest = 0;