diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/net/eathena/maprecv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/maprecv.cpp b/src/net/eathena/maprecv.cpp index 73c4ad069..3843838bd 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 BlockTypeT mask = fromInt(msg.readInt32("mask"), BlockType); + const BlockTypeT mask = static_cast<BlockTypeT>(msg.readInt32("mask")); const std::string name = msg.readString(16, "map name"); Map *const map = viewport->getMap(); |