fix death plateau error on server start

This commit is contained in:
ryannathans
2022-03-20 19:06:27 +11:00
parent 2bcc37ccb5
commit 0ec6671741
@@ -68,10 +68,6 @@ public class SmithingPulse extends SkillPulse<Item> {
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;
}