forked from MagicBane/Server
attempt to parse 2 worded values
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user