From 0ec66717416029edb971ff5d3b818f016ce4fa51 Mon Sep 17 00:00:00 2001 From: ryannathans <2804894-ryannathans@users.noreply.gitlab.com> Date: Sun, 20 Mar 2022 19:06:27 +1100 Subject: [PATCH] fix death plateau error on server start --- .../core/game/node/entity/skill/smithing/SmithingPulse.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Server/src/main/java/core/game/node/entity/skill/smithing/SmithingPulse.java b/Server/src/main/java/core/game/node/entity/skill/smithing/SmithingPulse.java index 396a7691d..91bce0236 100644 --- a/Server/src/main/java/core/game/node/entity/skill/smithing/SmithingPulse.java +++ b/Server/src/main/java/core/game/node/entity/skill/smithing/SmithingPulse.java @@ -68,10 +68,6 @@ public class SmithingPulse extends SkillPulse { player.getDialogueInterpreter().sendDialogue("You need to complete Tourist Trap to smith dart tips."); return false; } - if (!player.getQuestRepository().isComplete("Death Plateau") && bar.getSmithingType() == SmithingType.TYPE_CLAWS) { - player.getDialogueInterpreter().sendDialogue("You need to complete Death Plateau to smith claws."); - return false; - } return true; }