summaryrefslogtreecommitdiff
path: root/src/map/pc.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-23 18:17:30 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-07-23 18:17:30 +0000
commitdd3b3ddb4332afacd9d25a1d892ca889c82e7730 (patch)
treec8c26de7bd5b816d5c640c8b715755c240dd0428 /src/map/pc.c
parentbd0894e6e31121b4f738fd331c3e6da37d80e5e6 (diff)
downloadhercules-dd3b3ddb4332afacd9d25a1d892ca889c82e7730.tar.gz
hercules-dd3b3ddb4332afacd9d25a1d892ca889c82e7730.tar.bz2
hercules-dd3b3ddb4332afacd9d25a1d892ca889c82e7730.tar.xz
hercules-dd3b3ddb4332afacd9d25a1d892ca889c82e7730.zip
- Modified setting skillrange_by_weapon (skill.conf) to be a per-object-type setting instead of yes/no. The default now is that weapon-based skills will take the attacker's range for non-players.
- Changed the default of skillrange_by_distance to include homunculus. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7844 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r--src/map/pc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c
index d2556b0dc..c15fca7f9 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -6204,7 +6204,7 @@ int pc_equipitem(struct map_session_data *sd,int n,int req_pos)
pos = sd->equip_index[EQI_HAND_R] >= 0 ? EQP_HAND_L : EQP_HAND_R;
}
- if (pos&EQP_HAND_R && battle_config.use_weapon_skill_range)
+ if (pos&EQP_HAND_R && battle_config.use_weapon_skill_range&BL_PC)
{ //Update skill-block range database when weapon range changes. [Skotlex]
i = sd->equip_index[EQI_HAND_R];
if (i < 0 || !sd->inventory_data[i]) //No data, or no weapon equipped