From cd3f42eb6afc907c879efdf09bff425257df40a2 Mon Sep 17 00:00:00 2001 From: Temtaime Date: Thu, 3 Aug 2017 20:38:59 +0300 Subject: [PATCH] Fix swapped accsessories (#2281) * Enum was swapped, you can view it by calling @itemlist with one accessory equipped. Thanks to @Temtaime! --- src/common/mmo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/mmo.h b/src/common/mmo.h index 83bef472b5..58c1080827 100644 --- a/src/common/mmo.h +++ b/src/common/mmo.h @@ -220,8 +220,8 @@ enum equip_pos { EQP_ARMOR = 0x000010, // 16 EQP_SHOES = 0x000040, // 64 EQP_GARMENT = 0x000004, // 4 - EQP_ACC_L = 0x000008, // 8 - EQP_ACC_R = 0x000080, // 128 + EQP_ACC_R = 0x000008, // 8 + EQP_ACC_L = 0x000080, // 128 EQP_COSTUME_HEAD_TOP = 0x000400, // 1024 EQP_COSTUME_HEAD_MID = 0x000800, // 2048 EQP_COSTUME_HEAD_LOW = 0x001000, // 4096