toUppercase()

This commit is contained in:
2024-02-26 15:18:03 -05:00
parent 2e5fa69942
commit 1763266972
11 changed files with 17 additions and 14 deletions
@@ -79,7 +79,7 @@ public class TransferStatPowerAction extends AbstractPowerAction {
// Damage type can sometimes be null in the DB.
if (damageString.isEmpty() == false)
this.damageType = SourceType.valueOf(damageString);
this.damageType = SourceType.valueOf(damageString.toUpperCase());
} catch (Exception e) {
this.damageType = null;
}