parsing multi worded names

This commit is contained in:
2024-07-24 19:33:42 -05:00
parent 1a0b8c1d35
commit 2f076d3215
+1 -1
View File
@@ -63,7 +63,7 @@ public class EffectsParser {
try {
String rawData = compiledLines.get(1).replace(" ", "");
if(rawData.contains("\"")){
int startIndex = rawData.indexOf('"');
int startIndex = rawData.indexOf('"') + 1;
int endIndex = rawData.lastIndexOf('"');
char[] nameValue = rawData.toCharArray();
String name = "";