|
@@ -1359,8 +1359,8 @@ static struct Damage battle_calc_weapon_attack(struct block_list *src,struct blo
|
|
|
ATK_ADDRATE(sd->crit_atk_rate);
|
|
|
|
|
|
if(sd->status.party_id && (skill=pc_checkskill(sd,TK_POWER)) > 0){
|
|
|
- i = party_foreachsamemap(party_sub_count, sd, 0);
|
|
|
- ATK_ADDRATE(2*skill*i);
|
|
|
+ if( (i = party_foreachsamemap(party_sub_count, sd, 0)) > 1 ) // exclude the player himself [Inkfish]
|
|
|
+ ATK_ADDRATE(2*skill*i);
|
|
|
}
|
|
|
}
|
|
|
break;
|