Skip to content

Commit

Permalink
Update CrackTheClueII.java
Browse files Browse the repository at this point in the history
  • Loading branch information
PsycloneTM authored Feb 5, 2025
1 parent 1191c08 commit 2a800ba
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,10 +99,7 @@ public Map<Integer, QuestStep> loadSteps()
allSteps.addStep(nand(inWeek4Zone, week4Message), week4Steps);
allSteps.addStep(nand(inFinalZone, finalMessage), finalSteps);

for (int i = 0; i <= 7; i++)
{
steps.put(i, allSteps);
}
steps.put(0, allSteps);

return steps;
}
Expand Down Expand Up @@ -141,12 +138,10 @@ public void setupSteps()
{
week1Dig = new DigStep(this, new WorldPoint(2978, 3194, 0),
"Dig south-east of Rimmington and north-west of the chapel.", pieDish);
week1Dig.addIcon(ItemID.SPADE);
week1Message = new WidgetTextRequirement(ComponentID.DIALOG_SPRITE_TEXT, true, "You find some beautifully ornate gloves and boots.");

week2Dig = new DigStep(this, new WorldPoint(2991, 3295, 0),
"Dig by the entrance to the Air Altar south of Falador.", rawHerring);
week2Dig.addIcon(ItemID.SPADE);
week2Message = new WidgetTextRequirement(ComponentID.DIALOG_SPRITE_TEXT, true, "You find some beautifully ornate leg armour.");

List<QuestEmote> week3Steps = Arrays.asList(QuestEmote.SHRUG, QuestEmote.CHEER);
Expand All @@ -157,7 +152,6 @@ public void setupSteps()

week4Dig = new DigStep(this, new WorldPoint(3235, 3631, 0),
"Dig outside the Chaos Temple in the Wilderness.", goblinMail);
week4Dig.addIcon(ItemID.SPADE);
week4Message = new WidgetTextRequirement(ComponentID.DIALOG_SPRITE_TEXT, true, "You find a beautifully ornate cape.");

List<QuestEmote> finalSteps = Arrays.asList(QuestEmote.BOW, QuestEmote.YES, QuestEmote.CLAP);
Expand Down

0 comments on commit 2a800ba

Please sign in to comment.