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/echar/char.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/echar/char.c')
-rw-r--r-- | src/echar/char.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/echar/char.c b/src/echar/char.c index 9294a2c..6d43f22 100644 --- a/src/echar/char.c +++ b/src/echar/char.c @@ -270,7 +270,7 @@ void send_additional_slots(int fd, struct char_session_data* sd) type = 12; break; case EQP_ACC_L: - type = 0; + type = 19; break; case EQP_ARMOR: type = 17; @@ -281,8 +281,8 @@ void send_additional_slots(int fd, struct char_session_data* sd) case EQP_SHOES: type = 9; break; - case EQP_ACC_R: // not implimented - type = 0; + case EQP_ACC_R: + type = 18; break; case EQP_HEAD_TOP: type = 4; |