More PowerEntry work.

This commit is contained in:
2024-08-19 05:38:25 -04:00
parent 1a6dcf3f57
commit d836f80805
+1 -1
View File
@@ -66,7 +66,7 @@ public class PowersParser {
Matcher matcher = CONDITION_REGEX.matcher(powerData);
while (matcher.find()) {
conditionString.append(matcher.group());
conditionString.append(matcher.group().trim());
powerString.append(powerData, endPos, matcher.start());
endPos = matcher.end();
}