Effect Modifier parsing work.

This commit is contained in:
2024-08-10 18:45:23 -04:00
parent ff7bd7a699
commit 0bf3456119
+1 -1
View File
@@ -119,7 +119,7 @@ public class EffectsParser {
for (String modEntry : modEntries) {
ArrayList<String> modValues = new ArrayList<>();
Matcher matcher = STRSPLIT_REGEX.matcher(modEntry);
Matcher matcher = STRSPLIT_REGEX.matcher(modEntry.trim());
while (matcher.find())
modValues.add(matcher.group(1).trim());