Modifying physicalSkillPower and magicalSkillPower to do what description says.

This commit is contained in:
MobiusDevelopment
2019-04-08 10:57:01 +00:00
parent 5c14df03a9
commit adf1653c1c
77 changed files with 77 additions and 77 deletions

View File

@@ -179,7 +179,7 @@ public final class Formulas
}
damage = damage * critMod * generalTraitMod * attributeMod * randomMod * pvpPveMod;
damage = attacker.getStat().getValue(Stats.MAGICAL_SKILL_POWER, damage);
damage += attacker.getStat().getValue(Stats.MAGICAL_SKILL_POWER, 0);
return damage;
}