Effectbase updated with new enum

This commit is contained in:
2024-04-01 12:41:33 -04:00
parent 5ed497dd69
commit ae7fecbf6d
9 changed files with 13 additions and 22 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ public class Resists {
//Test if Damagetype is valid for foritude
private static boolean isValidDamageCapType(HashSet<SourceType> forts, Enum.DamageType damageType, boolean exclusive) {
for (SourceType fort : forts) {
Enum.DamageType dt = Enum.DamageType.GetDamageType(fort.name());
Enum.DamageType dt = Enum.DamageType.getDamageType(fort.name());
if (dt.equals(Enum.DamageType.NONE))
continue;