diff options
author | shennetsind <ind@henn.et> | 2013-04-25 10:10:58 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-25 10:10:58 -0300 |
commit | 064a4ecf07689e8ee673bb17e5cf342ae3cdd585 (patch) | |
tree | b26849c6de746fc90c03912289e6b3d9eaad33a4 /src/map | |
parent | 47d5b323e868184cea1fdcff5d0c3f2717c83564 (diff) | |
download | hercules-064a4ecf07689e8ee673bb17e5cf342ae3cdd585.tar.gz hercules-064a4ecf07689e8ee673bb17e5cf342ae3cdd585.tar.bz2 hercules-064a4ecf07689e8ee673bb17e5cf342ae3cdd585.tar.xz hercules-064a4ecf07689e8ee673bb17e5cf342ae3cdd585.zip |
Fixed Bug #7187
http://hercules.ws/board/tracker/issue-7187-monsternpc-view-after-coming-back-and-forth/
Help us with packet len db donations!
http://hercules.ws/board/topic/489-donate-your-packet-len-extraction-here/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/packets_struct.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index 600220dce..253ea6bdc 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -38,7 +38,7 @@ enum packet_headers { idle_unitType = 0x2ee, #elif PACKETVER < 20101124 idle_unitType = 0x7f9, -#elif PACKETVER < 20120712 +#elif PACKETVER < 20130000 idle_unitType = 0x857, #else idle_unitType = 0x915, @@ -60,7 +60,7 @@ enum packet_headers { spawn_unitType = 0x2ed, #elif PACKETVER < 20101124 spawn_unitType = 0x7f8, -#elif PACKETVER < 20120712 +#elif PACKETVER < 20130000 spawn_unitType = 0x858, #else spawn_unitType = 0x90f, @@ -80,7 +80,7 @@ enum packet_headers { unit_walkingType = 0x2ec, #elif PACKETVER < 20101124 unit_walkingType = 0x7f7, -#elif PACKETVER < 20120712 +#elif PACKETVER < 20130000 unit_walkingType = 0x856, #else unit_walkingType = 0x914, |