Removed initial bootySet roll.

This commit is contained in:
2023-08-04 10:10:19 -04:00
parent 765b837df0
commit 31e32cfcf4
-7
View File
@@ -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;