1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-02 05:20:32 +00:00

makeEmpty in Wild West no longer destroys nearby Great Walls

This commit is contained in:
Zeno Rogue 2018-11-25 23:37:39 +01:00
parent c45fa9bd9a
commit 90c024822e

View File

@ -3154,7 +3154,8 @@ bool makeEmpty(cell *c) {
if(c->land == laWildWest) { if(c->land == laWildWest) {
forCellEx(c2, c) forCellEx(c2, c)
forCellEx(c3, c2) forCellEx(c3, c2)
c3->wall = waNone; if(c3->wall != waBarrier)
c3->wall = waNone;
} }
return true; return true;