From bef6c94a568d82bb1c1ba991be656c3ba05f96ad Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Sun, 1 Oct 2023 11:14:52 +0200 Subject: [PATCH] Improve messaging in case user can't get more shapes Happened on the third chest for someone, despite them not having any shapes in their bank. The just couldn't get more than 6 shapes --- .../helpers/quests/thepathofglouphrie/MonolithPuzzle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/questhelper/helpers/quests/thepathofglouphrie/MonolithPuzzle.java b/src/main/java/com/questhelper/helpers/quests/thepathofglouphrie/MonolithPuzzle.java index cf75ddfb5f..b8f247aa0e 100644 --- a/src/main/java/com/questhelper/helpers/quests/thepathofglouphrie/MonolithPuzzle.java +++ b/src/main/java/com/questhelper/helpers/quests/thepathofglouphrie/MonolithPuzzle.java @@ -134,7 +134,7 @@ protected void setupSteps() pushNWMonolithEast.setMaxRoamRange(2); getSecondShapes = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49617, regionPoint(36, 38), - "Open the chest for some more shapes"); + "Open the chest for some more shapes. If the chest doesn't give you any shapes, drop the shapes in your inventory first, then click the chest, then pick up the shapes from the ground."); getSecondShapes.addSubSteps(pushSWMonolithNorth, pushNWMonolithEast); picklockChestForFirstKey = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49614, regionPoint(33, 37), "Picklock the chest for a key"); @@ -151,7 +151,7 @@ protected void setupSteps() openChestForCrystalChimeSeed.addSubSteps(pushSmallMonolithSouth, pushNWMonolithWest); getThirdShapes = new ObjectStep(getQuestHelper(), ObjectID.CHEST_49617, regionPoint(41, 29), - "Open the chest for some more shapes"); + "Open the chest for some more shapes. If the chest doesn't give you any shapes, drop the shapes in your inventory first, then click the chest, then pick up the shapes from the ground."); // getThirdShapes.addSubSteps(pushSmallMonolithSouth); var crystalChimeSeed = new ItemRequirement("Crystal chime seed", ItemID.CRYSTAL_CHIME_SEED, 1);