Browse Source

reduced reources drops

lakebane-master
FatBoy-DOTC 9 months ago
parent
commit
11faa98503
  1. 3
      src/engine/gameManager/LootManager.java

3
src/engine/gameManager/LootManager.java

@ -175,6 +175,9 @@ public enum LootManager { @@ -175,6 +175,9 @@ public enum LootManager {
return null;
if (ItemBase.getItemBase(itemUUID).getType().ordinal() == Enum.ItemType.RESOURCE.ordinal()) {
int chance = ThreadLocalRandom.current().nextInt(1,101);
if(chance > 10)
return null;
int amount = ThreadLocalRandom.current().nextInt(tableRow.minSpawn, tableRow.maxSpawn + 1);
return new MobLoot(mob, ItemBase.getItemBase(itemUUID), amount, false);
}

Loading…
Cancel
Save