Finish moving state arrays into game structure block.

This commit is contained in:
Eric S. Raymond 2017-06-07 07:10:07 -04:00
parent 3ba084480a
commit 2d95c3f4f5
9 changed files with 200 additions and 202 deletions

View file

@ -39,8 +39,8 @@ void score(long MODE) {
K=12;
if(I == CHEST)K=14;
if(I > CHEST)K=16;
if(PROP[I] >= 0)SCORE=SCORE+2;
if(game.place[I] == 3 && PROP[I] == 0)SCORE=SCORE+K-2;
if(game.prop[I] >= 0)SCORE=SCORE+2;
if(game.place[I] == 3 && game.prop[I] == 0)SCORE=SCORE+K-2;
MXSCOR=MXSCOR+K;
L20010: /*etc*/ ;
} /* end loop */