1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 18:59:59 +00:00

racing:: no ghosts while racing

This commit is contained in:
Zeno Rogue 2018-11-18 18:03:00 +01:00
parent 8408dd63d3
commit a14255158a

View File

@ -2277,6 +2277,9 @@ void giantLandSwitch(cell *c, int d, cell *from) {
case laMemory:
c->wall = waChasm;
if(d == 7 && !c->monst && hrand(2000) < 4)
#if CAP_RACING
if(!racing::on)
#endif
c->monst = moGhost;
break;
}