From 95e47062b40f3c1f374f20466ccc31ad1cbe7845 Mon Sep 17 00:00:00 2001 From: kcjg94 <79069248+kcjg94@users.noreply.github.com> Date: Sun, 24 Nov 2024 15:14:50 -0600 Subject: [PATCH] fix: Kings Random quest should have animate rock scroll as required (#1755) https://oldschool.runescape.wiki/w/King%27s_Ransom It can be obtained before the quest, so should be listed in the required items for the quest and not just the panel step. --- .../com/questhelper/helpers/quests/kingsransom/KingsRansom.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/questhelper/helpers/quests/kingsransom/KingsRansom.java b/src/main/java/com/questhelper/helpers/quests/kingsransom/KingsRansom.java index ceccd0f1f0..1ac650717e 100644 --- a/src/main/java/com/questhelper/helpers/quests/kingsransom/KingsRansom.java +++ b/src/main/java/com/questhelper/helpers/quests/kingsransom/KingsRansom.java @@ -414,7 +414,7 @@ public void setupSteps() @Override public List getItemRequirements() { - return Arrays.asList(grabOrLockpick, granite, blackKnightHelm, blackKnightBody, blackKnightLeg, bronzeMed, ironChain); + return Arrays.asList(grabOrLockpick, granite, blackKnightHelm, blackKnightBody, blackKnightLeg, bronzeMed, ironChain, animateRock); } @Override