Corrected attack formula

This commit is contained in:
Aria 2019-09-19 01:15:30 +02:00
parent 4a53aec8f5
commit e2a7642bb4

View File

@ -83,7 +83,7 @@ public class AttackResult {
}
public void addRelativeDamage(double coef) {
multiplyDamage(Math.max(1, coef));
multiplyDamage(Math.max(1, 1 + coef));
}
public AttackResult multiplyDamage(double coef) {