This commit is contained in:
Anuken
2020-10-28 09:42:41 -04:00
parent 63e4bca098
commit 4940c277f6
2 changed files with 2 additions and 2 deletions

View File

@@ -22,9 +22,9 @@ abstract class ShieldComp implements Healthc, Posc{
@Replace
@Override
public void damage(float amount){
amount /= healthMultiplier;
//apply armor
amount = Math.max(amount - armor, minArmorDamage * amount);
amount /= healthMultiplier;
hitTime = 1f;