diff options
author | Haru <haru@dotalux.com> | 2016-01-12 16:56:33 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2016-01-12 17:28:40 +0100 |
commit | ed05ed85c0bc44980168f730d02dfd379a2bfda9 (patch) | |
tree | ad2e3ef67876d58982eb355cab55f8b9a2551585 /src/common/mmo.h | |
parent | c01f74557fb80e8d99fa54140d4741d34a4d5019 (diff) | |
download | hercules-ed05ed85c0bc44980168f730d02dfd379a2bfda9.tar.gz hercules-ed05ed85c0bc44980168f730d02dfd379a2bfda9.tar.bz2 hercules-ed05ed85c0bc44980168f730d02dfd379a2bfda9.tar.xz hercules-ed05ed85c0bc44980168f730d02dfd379a2bfda9.zip |
Replaced 22-bit mask entry with a regular uint32 in the noviewid mapflag implementation
As per ultramage's suggestion in #926
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/mmo.h')
-rw-r--r-- | src/common/mmo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/mmo.h b/src/common/mmo.h index 17e6078fc..37fc63e29 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -268,6 +268,7 @@ struct item { //Equip position constants enum equip_pos { + EQP_NONE = 0x000000, EQP_HEAD_LOW = 0x000001, EQP_HEAD_MID = 0x000200, //512 EQP_HEAD_TOP = 0x000100, //256 |