From a72169bec3481839b89329c8e1738a35a83546d5 Mon Sep 17 00:00:00 2001 From: Kevin Date: Mon, 7 Apr 2008 02:18:11 +0000 Subject: NPC earthquake now divides the atk2 bonus between players. (bugreport:1253) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12514 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/battle.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/map/battle.c b/src/map/battle.c index a1b52c5e5..16651ef0c 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -2348,7 +2348,8 @@ struct Damage battle_calc_magic_attack(struct block_list *src,struct block_list if (skill_num == NPC_EARTHQUAKE) { //Adds atk2 to the damage, should be influenced by number of hits and skill-ratio, but not mdef reductions. [Skotlex] - ad.damage+= sstatus->rhw.atk2*skillratio/100; + //Also divide the extra bonuses from atk2 based on the number in range [Kevin] + ad.damage+= (sstatus->rhw.atk2*skillratio/100)/mflag; } if(ad.damage<1) -- cgit v1.2.3-70-g09d2