1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-14 05:57:37 +00:00

'remove faraway cells from the memory' option

This commit is contained in:
Zeno Rogue
2018-01-25 19:49:19 +01:00
parent 91a07dd856
commit 8713d34d19
12 changed files with 58 additions and 6 deletions

View File

@@ -2142,6 +2142,12 @@ void giantLandSwitch(cell *c, int d, cell *from) {
c->monst = moRatling;
}
break;
case laMemory:
c->wall = waChasm;
if(d == 7 && !c->monst && hrand(2000) < 4)
c->monst = moGhost;
break;
}
}