diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/maprecv.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/net/eathena/maprecv.cpp b/src/net/eathena/maprecv.cpp index fbad1ce0c..e40077af8 100644 --- a/src/net/eathena/maprecv.cpp +++ b/src/net/eathena/maprecv.cpp @@ -75,17 +75,14 @@ void MapRecv::processSetTilesType(Net::MessageIn &msg) if (layer) return; Map *const map = viewport->getMap(); -// logger->log("map test name: %s, mask %d", map->getGatName().c_str(), (int)mask); if (map && map->getGatName() == name) { for (int y = y1; y <= y2; y ++) { for (int x = x1; x <= x2; x ++) - { - logger->log("set col %d,%d", x, y); map->setBlockMask(x, y, mask); - } } + map->updateConditionLayers(); } } |