diff options
author | Ridley <ridley8819@gmail.com> | 2017-02-24 16:41:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-24 16:41:07 +0100 |
commit | 820070147a4f6ec464b99c227fae7929fa12c5e4 (patch) | |
tree | 1ff5f4e0284625ec3656a5aae8c1d82b3623602e /src/map/packets_struct.h | |
parent | 20145c61053479b9acd8ed50c75a80c2a861e349 (diff) | |
parent | daeb331d7dee30b9fa985665366527c2f09ef5a9 (diff) | |
download | hercules-820070147a4f6ec464b99c227fae7929fa12c5e4.tar.gz hercules-820070147a4f6ec464b99c227fae7929fa12c5e4.tar.bz2 hercules-820070147a4f6ec464b99c227fae7929fa12c5e4.tar.xz hercules-820070147a4f6ec464b99c227fae7929fa12c5e4.zip |
Merge pull request #1567 from guilherme-gm/fix-nameditem
Fixes named items having their names changed when near other players
Diffstat (limited to 'src/map/packets_struct.h')
-rw-r--r-- | src/map/packets_struct.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/packets_struct.h b/src/map/packets_struct.h index e461eebe9..4d474ac93 100644 --- a/src/map/packets_struct.h +++ b/src/map/packets_struct.h @@ -589,6 +589,9 @@ struct packet_spawn_unit { #endif #if PACKETVER >= 20150513 int16 body; +#endif +/* Might be earlier, this is when the named item bug began */ +#if PACKETVER >= 20131223 char name[NAME_LENGTH]; #endif } __attribute__((packed)); @@ -657,6 +660,9 @@ struct packet_unit_walking { #endif #if PACKETVER >= 20150513 int16 body; +#endif +/* Might be earlier, this is when the named item bug began */ +#if PACKETVER >= 20131223 char name[NAME_LENGTH]; #endif } __attribute__((packed)); @@ -723,6 +729,9 @@ struct packet_idle_unit { #endif #if PACKETVER >= 20150513 int16 body; +#endif +/* Might be earlier, this is when the named item bug began */ +#if PACKETVER >= 20131223 char name[NAME_LENGTH]; #endif } __attribute__((packed)); |