spell dodge chance resolved

This commit is contained in:
2025-02-01 11:36:33 -06:00
parent d75a052bd3
commit 228152596c
+2 -2
View File
@@ -4724,9 +4724,9 @@ public class PlayerCharacter extends AbstractCharacter {
// Add item bonuses and return
if (type.equals(ModType.Dodge) && !fromCombat)
return ((amount / 4) - attackerLevel + this.getLevel()) / 4;
return (amount - attackerLevel + this.getLevel()) / 16; // spells
else
return (amount - attackerLevel + this.getLevel()) / 4;
return (amount - attackerLevel + this.getLevel()) / 4; // combat
}
public float getRegenModifier(ModType type) {