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
+1 -1
View File
@@ -285,7 +285,7 @@ public class EffectsBase {
if (name.isEmpty())
return null;
else
return Enum.SourceType.valueOf(name);
return Enum.SourceType.valueOf(name.toUpperCase());
}