From 31e32cfcf47f5895a8285e7d4d0173bb421d2bbd Mon Sep 17 00:00:00 2001 From: MagicBot Date: Fri, 4 Aug 2023 10:10:19 -0400 Subject: [PATCH] Removed initial bootySet roll. --- src/engine/gameManager/LootManager.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/engine/gameManager/LootManager.java b/src/engine/gameManager/LootManager.java index 4661e3cc..ecf48e90 100644 --- a/src/engine/gameManager/LootManager.java +++ b/src/engine/gameManager/LootManager.java @@ -254,13 +254,6 @@ public enum LootManager { public static void GenerateGoldDrop(Mob mob, BootySetEntry bse, Boolean inHotzone) { - int chanceRoll = ThreadLocalRandom.current().nextInt(99) + 1; - - //early exit, failed to hit minimum chance roll OR booty was generated from mob's death - - if (chanceRoll > bse.dropChance) - return; - //determine and add gold to mob inventory int high = bse.highGold;