Uppercase for source type

This commit is contained in:
2024-03-29 15:28:01 -04:00
parent 2f3b9e0fb2
commit f682f9a5ae
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ public class dbPowerHandler extends dbHandlerBase {
IDString = rs.getString("IDString");
int token = DbManager.hasher.SBStringHash(IDString);
source = rs.getString("source").replace("-", "").toUpperCase().trim();
source = rs.getString("source").replace("-", "").trim();
Enum.EffectSourceType effectSourceType = Enum.EffectSourceType.GetEffectSourceType(source);
if (EffectsBase.effectSourceTypeMap.containsKey(token) == false)