X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=score.c;h=645a35e96a132345e6dd512496d87c9adad9d193;hb=880d17042cccd53fbf1e6b3b56b208ae1bd8d754;hp=594b637578d1270822c9b183218efaeba26ab2e3;hpb=eaee02aa09d1db40ea10d3b77e7df1e2e9c6b9ba;p=open-adventure.git diff --git a/score.c b/score.c index 594b637..645a35e 100644 --- a/score.c +++ b/score.c @@ -41,7 +41,7 @@ void score(enum termination mode) if(i > CHEST)k=16; if(game.prop[i] >= 0) score += 2; - if(game.place[i] == 3 && game.prop[i] == 0) + if(game.place[i] == LOC_BUILDING && game.prop[i] == 0) score += k-2; mxscor += k; } @@ -75,7 +75,7 @@ void score(enum termination mode) mxscor += 45; /* Did he come to Witt's End as he should? */ - if(game.place[MAGZIN] == 108) + if(game.place[MAGZIN] == LOC_WITTSEND) score += 1; mxscor += 1;