From 885afa33735569c92d068ba736aa03e85c687401 Mon Sep 17 00:00:00 2001 From: TastyPumPum Date: Fri, 13 Oct 2023 18:39:35 +0100 Subject: [PATCH] Stop catacombs drop --- src/structures/SimpleMonster.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/SimpleMonster.ts b/src/structures/SimpleMonster.ts index f851b8560..277ae6cb0 100644 --- a/src/structures/SimpleMonster.ts +++ b/src/structures/SimpleMonster.ts @@ -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'); }