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
@@ -78,7 +78,7 @@ public class TransferStatPowerAction extends AbstractPowerAction {
// Damage type can sometimes be null in the DB.
if (damageString.isEmpty() == false)
this.damageType = Enum.DamageType.GetDamageType(damageString);
this.damageType = Enum.DamageType.getDamageType(damageString);
} catch (Exception e) {
this.damageType = null;
}