Update exception

This commit is contained in:
xjoao 2020-05-22 13:38:33 -04:00
parent 84f4760349
commit d766818ef2

View File

@ -54,7 +54,7 @@ public class Item {
try {
int index = Integer.valueOf(item.getExtradata()) % (item.getBaseItem().getMultiHeights().length);
return item.getBaseItem().getMultiHeights()[(item.getExtradata().isEmpty() ? 0 : index)];
} catch (Exception e) {
} catch (NumberFormatException e) {
}
}