summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-06-08 17:24:07 -0300
committerEuphy <euphy@rathena.org>2013-06-15 15:43:05 -0400
commit130ec104a8e8742df4d7ead13c42ee803c55f52b (patch)
tree114bf531bc78477bbf590494fbddee7e0b1862e9 /src/map/battle.c
parent11f97543ba6581a1e8f0ef4930c6eac386ddc240 (diff)
downloadhercules-130ec104a8e8742df4d7ead13c42ee803c55f52b.tar.gz
hercules-130ec104a8e8742df4d7ead13c42ee803c55f52b.tar.bz2
hercules-130ec104a8e8742df4d7ead13c42ee803c55f52b.tar.xz
hercules-130ec104a8e8742df4d7ead13c42ee803c55f52b.zip
Follow up d73783f22b2bb881aab74524d153d89a5932a199
Adjusting party.c interface name to adhere with the rest (pretty much we try to make it as short as we can, and being there were no conflicts we saw no reason to maintain the 'i') Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index 9dac36671..2cc4f984f 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -2148,7 +2148,7 @@ struct Damage battle_calc_weapon_attack(struct block_list *src,struct block_list
ATK_ADDRATE(sd->bonus.crit_atk_rate);
if(sd->status.party_id && (temp=pc->checkskill(sd,TK_POWER)) > 0){
- if( (i = party_foreachsamemap(iParty->sub_count, sd, 0)) > 1 ) // exclude the player himself [Inkfish]
+ if( (i = party_foreachsamemap(party->sub_count, sd, 0)) > 1 ) // exclude the player himself [Inkfish]
ATK_ADDRATE(2*temp*i);
}
}