I was wrong of course

This commit is contained in:
Minecon724 2024-09-21 10:20:06 +02:00
parent fee05245c9
commit 3c79dbf8c3
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -85,7 +85,11 @@ public class Configuration {
int min = (int) dropMap.get("quantityMin"); int min = (int) dropMap.get("quantityMin");
int max = (int) dropMap.get("quantityMax"); int max = (int) dropMap.get("quantityMax");
double chance = (double) dropMap.get("chance"); try {
double chance = (double) dropMap.get("chance");
} catch (ClassCastException e) { // pointlessest error ever
double chance = ((Integer) dropMap.get("chance")).doubleValue();
}
drops.add(new Drop(itemStack, min, max, chance)); drops.add(new Drop(itemStack, min, max, chance));
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {