diff --git a/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java b/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java index e4b04347..6777b4d4 100644 --- a/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java +++ b/src/main/java/WayofTime/bloodmagic/item/armour/ItemLivingArmour.java @@ -143,7 +143,7 @@ public class ItemLivingArmour extends ItemArmor implements ISpecialArmor, IMeshP // return new ArmorProperties(-1, damageAmount * armourPenetrationReduction, maxAbsorption); // } - return new ArmorProperties(-1, damageAmount, maxAbsorption); + return new ArmorProperties(-1, source.isUnblockable() ? 1 - remainder : damageAmount, maxAbsorption); } } else {