diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-06 03:22:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-06 03:22:50 +0300 |
commit | 43e788045d34933ad520e4c9687e9e4b16523087 (patch) | |
tree | 919bf799d2d088da46c9e65f175f3d38d25cd0b1 /src/emap/clif.c | |
parent | a3e8a5dd2406247196d796de495056b451c0d73c (diff) | |
download | evol-hercules-43e788045d34933ad520e4c9687e9e4b16523087.tar.gz evol-hercules-43e788045d34933ad520e4c9687e9e4b16523087.tar.bz2 evol-hercules-43e788045d34933ad520e4c9687e9e4b16523087.tar.xz evol-hercules-43e788045d34933ad520e4c9687e9e4b16523087.zip |
Add support for show accessory slots.
Diffstat (limited to 'src/emap/clif.c')
-rw-r--r-- | src/emap/clif.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emap/clif.c b/src/emap/clif.c index 11b542f..ee5e838 100644 --- a/src/emap/clif.c +++ b/src/emap/clif.c @@ -238,6 +238,8 @@ static void eclif_send_additional_slots(TBL_PC* sd, TBL_PC* sd2) equipPos(EQI_COSTUME_LOW, 15); equipPos(EQI_COSTUME_GARMENT, 16); equipPos(EQI_ARMOR, 17); + equipPos(EQI_ACC_R, 18); + equipPos(EQI_ACC_L, 19); //skipping SHADOW slots } @@ -276,6 +278,8 @@ static void eclif_send_additional_slots2(struct block_list *bl) equipPos2(EQI_COSTUME_LOW, 15); equipPos2(EQI_COSTUME_GARMENT, 16); equipPos2(EQI_ARMOR, 17); + equipPos2(EQI_ACC_R, 18); + equipPos2(EQI_ACC_L, 19); //skipping SHADOW slots } |