Explorar o código

Revert the last commit added by mistake.

Adry85 %!s(int64=7) %!d(string=hai) anos
pai
achega
01e14542fd

+ 3 - 1
src/main/java/com/l2jserver/gameserver/model/stats/Formulas.java

@@ -911,9 +911,11 @@ public final class Formulas
 		if (isPvP)
 		{
 			damage *= attacker.calcStat(Stats.PVP_PHYS_SKILL_DMG, 1, null, null);
-			damage = attacker.calcStat(Stats.PHYSICAL_SKILL_POWER, damage, null, null); // // Physical skill dmg boost
 		}
 		
+		// Physical skill dmg boost
+		damage = attacker.calcStat(Stats.PHYSICAL_SKILL_POWER, damage, null, null);
+		
 		damage *= calcAttributeBonus(attacker, target, null);
 		if (target.isAttackable())
 		{