diff --git a/game.cpp b/game.cpp index 4b13b1d8..da47803f 100644 --- a/game.cpp +++ b/game.cpp @@ -3152,13 +3152,9 @@ bool makeEmpty(cell *c) { c->item = itNone; if(c->land == laWildWest) { - for(int i=0; itype; i++) { - cell *c2 = c->move(i); - if(c2) for(int j=0; jtype; j++) { - cell *c3 = c2->move(j); - if(c3) c3->wall = waNone; - } - } + forCellEx(c2, c) + forCellEx(c3, c2) + c3->wall = waNone; } return true;