Browse Source

hotfix mob roll chance

master
FatBoy-DOTC 1 year ago
parent
commit
4bd158cc78
  1. 4
      src/engine/loot/LootManager.java

4
src/engine/loot/LootManager.java

@ -97,7 +97,7 @@ public class LootManager { @@ -97,7 +97,7 @@ public class LootManager {
int roll = ThreadLocalRandom.current().nextInt(101);
switch (bse.bootyType) {
case "GOLD":
if (roll >= (bse.dropChance * multiplier)) {
if (roll > (bse.dropChance * multiplier)) {
//early exit, failed to hit minimum chance roll OR booty was generated from mob's death
break;
}
@ -109,7 +109,7 @@ public class LootManager { @@ -109,7 +109,7 @@ public class LootManager {
}
break;
case "LOOT":
if (roll >= (bse.dropChance * multiplier)) {
if (roll > (bse.dropChance * multiplier)) {
//early exit, failed to hit minimum chance roll OR booty was generated from mob's death
break;
}

Loading…
Cancel
Save