diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java index bccaf59f9..d0f42d83d 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/hero/Hero.java @@ -287,7 +287,7 @@ public class Hero extends Char { evasion /= 2; } - int aEnc = belongings.armor != null ? belongings.armor.STR - STR() : 0; + int aEnc = belongings.armor != null ? belongings.armor.STR - STR() : 9 - STR(); if (aEnc > 0) { return (int)(defenseSkill * evasion / Math.pow( 1.5, aEnc ));