summaryrefslogtreecommitdiff
path: root/src/map/charcommand.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-06 18:47:11 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-06 18:47:11 +0000
commitf0fa9794bcdde0b1402bb7a7256265f59bbd7313 (patch)
tree7b63a598956cf1c3acf681c13112f5d6c4278e93 /src/map/charcommand.c
parentb1b0860d1ca7e0f9ddb57756be9af11d9557d555 (diff)
downloadhercules-f0fa9794bcdde0b1402bb7a7256265f59bbd7313.tar.gz
hercules-f0fa9794bcdde0b1402bb7a7256265f59bbd7313.tar.bz2
hercules-f0fa9794bcdde0b1402bb7a7256265f59bbd7313.tar.xz
hercules-f0fa9794bcdde0b1402bb7a7256265f59bbd7313.zip
- Added EQP_/EQI_ constants in pc.h to identify equip position and equip indexes, makes equipping related code much easier to read.
- Also cleaned up pc_equipitem. When dual wielding or equipping accessories, if the client actually specifies one of the two positions, it will be taken into account. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7550 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/charcommand.c')
-rw-r--r--src/map/charcommand.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/map/charcommand.c b/src/map/charcommand.c
index 610d7880a..7abbda002 100644
--- a/src/map/charcommand.c
+++ b/src/map/charcommand.c
@@ -777,33 +777,33 @@ charcommand_itemlist(
}
if ((equip = i_item->equip)) {
strcpy(equipstr, "| equiped: ");
- if (equip & 4)
+ if (equip & EQP_GARMENT)
strcat(equipstr, "robe/gargment, ");
- if (equip & 8)
+ if (equip & EQP_ACC_L)
strcat(equipstr, "left accessory, ");
- if (equip & 16)
+ if (equip & EQP_ARMOR)
strcat(equipstr, "body/armor, ");
- if ((equip & 34) == 2)
+ if ((equip & EQP_WEAPON) == EQP_HAND_R)
strcat(equipstr, "right hand, ");
- if ((equip & 34) == 32)
+ if ((equip & EQP_WEAPON) == EQP_HAND_L)
strcat(equipstr, "left hand, ");
- if ((equip & 34) == 34)
+ if ((equip & EQP_WEAPON) == EQP_WEAPON)
strcat(equipstr, "both hands, ");
- if (equip & 64)
+ if (equip & EQP_SHOES)
strcat(equipstr, "feet, ");
- if (equip & 128)
+ if (equip & EQP_ACC_R)
strcat(equipstr, "right accessory, ");
- if ((equip & 769) == 1)
+ if ((equip & EQP_HELM) == EQP_HEAD_LOW)
strcat(equipstr, "lower head, ");
- if ((equip & 769) == 256)
+ if ((equip & EQP_HELM) == EQP_HEAD_TOP)
strcat(equipstr, "top head, ");
- if ((equip & 769) == 257)
+ if ((equip & EQP_HELM) == (EQP_HEAD_LOW|EQP_HEAD_TOP))
strcat(equipstr, "lower/top head, ");
- if ((equip & 769) == 512)
+ if ((equip & EQP_HELM) == EQP_HEAD_MID)
strcat(equipstr, "mid head, ");
- if ((equip & 769) == 512)
+ if ((equip & EQP_HELM) == (EQP_HEAD_LOW|EQP_HEAD_MID))
strcat(equipstr, "lower/mid head, ");
- if ((equip & 769) == 769)
+ if ((equip & EQP_HELM) == EQP_HELM)
strcat(equipstr, "lower/mid/top head, ");
// remove final ', '
equipstr[strlen(equipstr) - 2] = '\0';