1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-24 02:17:40 +00:00

Added summoning rules for the new lands.

This commit is contained in:
Zeno Rogue
2018-01-04 20:28:57 +01:00
parent 0ee865828e
commit 9c86b073bb
2 changed files with 10 additions and 1 deletions

View File

@@ -1609,6 +1609,11 @@ bool earthWall(cell *c) {
c->wall = waRed3;
return true;
}
if(c->wall == waNone && c->land == laSnakeNest) {
c->item = itNone;
c->wall = waRed3;
return true;
}
if(c->wall == waNone && c->land == laBurial) {
c->item = itNone;
c->wall = waBarrowDig;