1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-16 19:18:05 +00:00

strengthened the Clearing walls

This commit is contained in:
Zeno Rogue
2019-12-26 09:40:07 +01:00
parent 2ba4afc09a
commit 873c679c01
2 changed files with 5 additions and 3 deletions

View File

@@ -1771,7 +1771,7 @@ EX void moreBigStuff(cell *c) {
c->land = laClearing, c->wall = waNone; // , c->monst = moNone, c->item = itNone;
}
else if(d == 1 && !tactic::on && !eubinary)
c->wall = waSmallTree, c->monst = moNone, c->item = itNone;
c->wall = waSmallTree, c->monst = moNone, c->item = itNone, c->landparam = 1;
}
}