diff --git a/game/engine/generator/map/Roomer.lua b/game/engine/generator/map/Roomer.lua index 9d2cee6d6abf3b13d25653cb5646be56604f12d5..af39940c16e0ab0a430ed5faab7e1ee5efbc3c25 100644 --- a/game/engine/generator/map/Roomer.lua +++ b/game/engine/generator/map/Roomer.lua @@ -189,8 +189,8 @@ function _M:tunnel(x1, y1, x2, y2, id) if self.map.room_map[nx][ny].can_open then print(feat, "tunnel crossing can_open", nx,ny) for i = -1, 1 do for j = -1, 1 do if self.map:isBound(nx + i, ny + j) and self.map.room_map[nx + i][ny + j].can_open then --- self.map.room_map[nx + i][ny + j].can_open = false --- print(feat, "forbiding crossing at ", nx+i,ny+j) + self.map.room_map[nx + i][ny + j].can_open = false + print(feat, "forbiding crossing at ", nx+i,ny+j) end end end tun[#tun+1] = {nx,ny,true} x1, y1 = nx, ny