attempt to fix fletchibng crash (#52)

This commit is contained in:
Danial
2019-10-12 14:06:30 +13:00
committed by Daniel Ginovker
parent ae05e80a7c
commit 3e71d072f7
@@ -227,12 +227,11 @@ public class ItemDefinitions {
* Returns the weight of an item.
*/
public static double getWeight(int id) {
try {
if (id >= 0 && id < definitions.length)
return definitions[id].weight;
} catch (NullPointerException noId) {
System.out.println("WARNING: id " + id + " doesn't have a definition!");
return 0;
}
System.out.println("WARNING: id " + id + " doesn't have a definition!");
return 0.0;
}
/**