Comment update

This commit is contained in:
2024-08-13 11:28:07 -04:00
parent adde3fc3a8
commit 95cf5fa209
+4 -1
View File
@@ -34,12 +34,15 @@ public class EffectsParser {
public static void parseWpakFile() throws IOException {
// Read .wpak file from disk
byte[] fileData = Files.readAllBytes(Paths.get(EffectsPath));
String fileContents = new String(fileData);
Matcher matcher = EFFECT_REGEX.matcher(fileContents);
// Iterate effect entries from .wpak config data
Matcher matcher = EFFECT_REGEX.matcher(fileContents);
while (matcher.find()) {
EffectEntry effectEntry = parseEffectEntry(matcher.group());
effect_data.put(effectEntry.id, effectEntry);