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

started working on the 'Dual Land'

This commit is contained in:
Zeno Rogue
2017-10-29 23:54:26 +01:00
parent e9696e73c2
commit 3ede3601ea
7 changed files with 71 additions and 20 deletions

View File

@@ -1919,6 +1919,11 @@ void giantLandSwitch(cell *c, int d, cell *from) {
case laMercuryRiver:
// do nothing!
break;
case laDual:
if(d == 9 && (ctof(c) || hrand(100) < 5))
c->wall = waChasm;
break;
}
}