summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/eathena/maprecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/maprecv.cpp b/src/net/eathena/maprecv.cpp
index df43cac76..73c4ad069 100644
--- a/src/net/eathena/maprecv.cpp
+++ b/src/net/eathena/maprecv.cpp
@@ -69,7 +69,7 @@ void MapRecv::processSetTilesType(Net::MessageIn &msg)
const int y1 = msg.readInt16("y1");
const int x2 = msg.readInt16("x2");
const int y2 = msg.readInt16("y2");
- const BlockType mask = fromInt(msg.readInt32("mask"), BlockType);
+ const BlockTypeT mask = fromInt(msg.readInt32("mask"), BlockType);
const std::string name = msg.readString(16, "map name");
Map *const map = viewport->getMap();