diff options
author | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 22:33:32 +0000 |
---|---|---|
committer | ai4rei <ai4rei@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2010-12-02 22:33:32 +0000 |
commit | b4bcbd1a2dca417a61f70eb9d1524fa92b2e0aa9 (patch) | |
tree | 64e357255f2460a8c93fb46e315e606416f84583 /src/map/pc.c | |
parent | e6b8222bdb14b6e1e8b3cd12733ae1bce97a23fb (diff) | |
download | hercules-b4bcbd1a2dca417a61f70eb9d1524fa92b2e0aa9.tar.gz hercules-b4bcbd1a2dca417a61f70eb9d1524fa92b2e0aa9.tar.bz2 hercules-b4bcbd1a2dca417a61f70eb9d1524fa92b2e0aa9.tar.xz hercules-b4bcbd1a2dca417a61f70eb9d1524fa92b2e0aa9.zip |
* Various code tweaks and updates related to item types.
- Replaced item type literals with their appropriate constants.
- Added itemdb_typename to replace the ugly "BUG!" filled array in @iteminfo (since r1741, follow up to r14550).
- Made the item database parser verify item type for validity.
- Added item type constants to const.txt for use in scripts (getiteminfo).
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14551 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 9d8ad29b0..785036d0f 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -605,7 +605,7 @@ int pc_setequipindex(struct map_session_data *sd) if( sd->status.inventory[i].equip & EQP_HAND_L ) { - if( sd->inventory_data[i] && sd->inventory_data[i]->type == 4 ) + if( sd->inventory_data[i] && sd->inventory_data[i]->type == IT_WEAPON ) sd->weapontype2 = sd->inventory_data[i]->look; else sd->weapontype2 = 0; |