|
|
|
@ -62,7 +62,13 @@ public class EffectsParser {
@@ -62,7 +62,13 @@ public class EffectsParser {
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
effectData.name = compiledLines.get(1).replace(" ", "").replace("\"", "").split(" ")[1]; |
|
|
|
|
effectData.icon = Integer.parseInt(compiledLines.get(1).replace(" ", "").split(" ")[2]); |
|
|
|
|
int iconID = 0; |
|
|
|
|
try { |
|
|
|
|
iconID = Integer.parseInt(compiledLines.get(1).replace(" ", "").split(" ")[2]); |
|
|
|
|
} catch(Exception e){ |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
effectData.icon = iconID; |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
Logger.error(e); |
|
|
|
|
} |
|
|
|
|