From debda2da9fbc7020fecd9d03a37f5c08df86841c Mon Sep 17 00:00:00 2001 From: Haavardaw <> Date: Thu, 24 Oct 2024 01:10:13 +0200 Subject: [PATCH] While Guthix Sleeps feedback changes Reworded the Item requirement of khazard teleport to show as "2x Khazard teleports, Ardougne cloak or Spirit tree (3)" Instead of "2x Spirit tree (3), Ardougne cloak or Khazard teleport" As this might look a bit confusing with the 2x spirit tree and the 3 digit after which is well the number, just looks more easily understandable this way. Also changed the widget highlight to 44 instead of 47, as 47 is Smoggy. Issue was posted about it in https://github.com/Zoinkwiz/quest-helper/issues/1821 --- .../helpers/quests/whileguthixsleeps/WhileGuthixSleeps.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/questhelper/helpers/quests/whileguthixsleeps/WhileGuthixSleeps.java b/src/main/java/com/questhelper/helpers/quests/whileguthixsleeps/WhileGuthixSleeps.java index fa66818085..518ac67fa9 100644 --- a/src/main/java/com/questhelper/helpers/quests/whileguthixsleeps/WhileGuthixSleeps.java +++ b/src/main/java/com/questhelper/helpers/quests/whileguthixsleeps/WhileGuthixSleeps.java @@ -675,7 +675,7 @@ protected void setupRequirements() antipoison = new ItemRequirement("Antipoison", ItemCollections.ANTIPOISONS); burthorpeTeleport = new ItemRequirement("Teleport to Burthorpe", ItemCollections.COMBAT_BRACELETS); burthorpeTeleport.addAlternates(ItemCollections.GAMES_NECKLACES); - khazardTeleport = new ItemRequirement("Spirit tree (3), Ardougne cloak or Khazard teleport", ItemCollections.ARDY_CLOAKS); + khazardTeleport = new ItemRequirement("Khazard teleports, Ardougne cloak or Spirit tree (3)", ItemCollections.ARDY_CLOAKS); khazardTeleport.addAlternates(ItemID.KHAZARD_TELEPORT); feldipHillsTeleport = new ItemRequirement("Feldip hills teleport or Hunter/Max cape", ItemID.FELDIP_HILLS_TELEPORT); feldipHillsTeleport.addAlternates(ItemCollections.FAIRY_STAFF); @@ -1320,7 +1320,7 @@ public void setupSteps() contactCyrisus = new DetailedQuestStep(this, "Use NPC Contact to talk to Cyrisus.", astralRune, cosmicRune, airRune.quantity(2)); contactCyrisus.addSpellHighlight(LunarSpells.NPC_CONTACT); - contactCyrisus.addWidgetHighlight(75, 47); + contactCyrisus.addWidgetHighlight(75, 44); contactTurael = new DetailedQuestStep(this, "Use NPC Contact to talk to Turael, or go talk to him in Burthorpe.", astralRune, cosmicRune, airRune.quantity(2)); contactTurael.addSpellHighlight(LunarSpells.NPC_CONTACT); contactTurael.addWidgetHighlight(75, 22);