diff options
author | shennetsind <ind@henn.et> | 2013-04-24 14:56:01 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-04-24 14:56:01 -0300 |
commit | 018680a339e96fe28e115f94a9eb0f0816bd72c4 (patch) | |
tree | af5a4a22a8e52afd7335330b6ccca56f06c80440 /src/map/packets_struct.h | |
parent | 4a6e655a6fb39123363905b468a3e5dcd1451f8d (diff) | |
download | hercules-018680a339e96fe28e115f94a9eb0f0816bd72c4.tar.gz hercules-018680a339e96fe28e115f94a9eb0f0816bd72c4.tar.bz2 hercules-018680a339e96fe28e115f94a9eb0f0816bd72c4.tar.xz hercules-018680a339e96fe28e115f94a9eb0f0816bd72c4.zip |
Fixed Bug #7182
Missing zero.
http://hercules.ws/board/tracker/issue-7182-item-delay-issue/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r-- | src/map/packets_struct.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index 17c6777e8..600220dce 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -23,7 +23,7 @@ enum packet_headers { additemType = 0xa0, #elif PACKETVER < 20071002 additemType = 0x29a, -#elif PACKETVER < 2013000 /* not sure date */ +#elif PACKETVER < 20130000 /* not sure date */ additemType = 0x2d4, #else additemType = 0x990, @@ -85,7 +85,7 @@ enum packet_headers { #else unit_walkingType = 0x914, #endif -#if PACKETVER > 2013000 /* not sure date */ +#if PACKETVER > 20130000 /* not sure date */ dropflooritemType = 0x84b, #else dropflooritemType = 0x9e, |