diff options
Diffstat (limited to 'src/net/eathena/maprecv.cpp')
-rw-r--r-- | src/net/eathena/maprecv.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/net/eathena/maprecv.cpp b/src/net/eathena/maprecv.cpp index 03c660c4c..06a039306 100644 --- a/src/net/eathena/maprecv.cpp +++ b/src/net/eathena/maprecv.cpp @@ -57,4 +57,15 @@ void MapRecv::processInstanceDelete(Net::MessageIn &msg) msg.readInt32("unused"); } +void MapRecv::processSetTilesType(Net::MessageIn &msg) +{ + UNIMPLIMENTEDPACKET; + msg.readInt16("x1"); + msg.readInt16("y1"); + msg.readInt16("x2"); + msg.readInt16("y2"); + msg.readInt32("mask"); + msg.readString(16, "map name"); +} + } // namespace EAthena |