audit command for drop rates

This commit is contained in:
2024-12-27 20:26:56 -06:00
parent d031f1be01
commit a4bd47f001
+1 -2
View File
@@ -129,10 +129,9 @@ public enum LootManager {
if (!mob.getSafeZone()) {
boolean allow = false;
if(mob.level >= 50){
//totalRange = baseBound;
allow = true;
}else{
if((50 - mob.level) < ThreadLocalRandom.current().nextInt(0,101)){
if((50 - mob.level) > ThreadLocalRandom.current().nextInt(0,101)){
allow = true;
}
}