diff --git a/src/main/scala/net/psforever/objects/vital/resolution/ResolutionCalculations.scala b/src/main/scala/net/psforever/objects/vital/resolution/ResolutionCalculations.scala index 07717dfb1..44774f2c8 100644 --- a/src/main/scala/net/psforever/objects/vital/resolution/ResolutionCalculations.scala +++ b/src/main/scala/net/psforever/objects/vital/resolution/ResolutionCalculations.scala @@ -98,7 +98,7 @@ object ResolutionCalculations { if (resistedDam <= currentArmor) { (0, resistedDam) //armor damage } else { - (resistedDam + (resistance - currentArmor), currentArmor) //deplete armor; health damage + bonus + (resistedDam, currentArmor) //deplete armor; health damage } } else { (0, damages) //too weak; armor damage (less than resistance)