Skip to content

Commit

Permalink
Stop catacombs drop
Browse files Browse the repository at this point in the history
  • Loading branch information
TastyPumPum committed Oct 13, 2023
1 parent 928609b commit 885afa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/structures/SimpleMonster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ export default class SimpleMonster extends Monster {
loot.add("Larran's key");
}
}
if (options.inCatacombs && this.data.hitpoints) {
if (options.inCatacombs && this.data.hitpoints && !canGetLarranKey) {
if (roll(getAncientShardChanceFromHP(this.data.hitpoints))) {
loot.add('Ancient shard');
}
Expand Down

0 comments on commit 885afa3

Please sign in to comment.