Skip to content

Commit

Permalink
The teleport to lumbridge spell requires 3 air runes (#1921)
Browse files Browse the repository at this point in the history
* The teleport to lumbridge spell requires 3 air runes

* fix: Set air rune quantity to 3 in panel for Lumby Medium

---------

Co-authored-by: Cooper Morris <[email protected]>
Co-authored-by: Zoinkwiz <[email protected]>
  • Loading branch information
3 people authored Jan 2, 2025
1 parent 6e71c85 commit 744a383
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ public void setupSteps()
craftCoif = new ItemStep(this, "Craft a coif.", thread, needle.highlighted(), leather.highlighted());

tpLumb = new DetailedQuestStep(this, "Cast the Teleport to Lumbridge spell.", airRune.quantity(3),
earthRune.quantity(1), lawRune.quantity(1));
earthRune, lawRune.quantity(1));

upgradeDevice = new NpcStep(this, NpcID.AVA, new WorldPoint(3093, 3357, 0),
"Buy an Ava's Accumulator from Ava in the Draynor Manor.", avasAccumulator, steelArrows.quantity(75));
Expand Down Expand Up @@ -358,7 +358,7 @@ public List<PanelDetails> getPanels()
allSteps.add(upgradeSteps);

PanelDetails tpLumbSteps = new PanelDetails("Teleport to Lumbridge", Collections.singletonList(tpLumb),
airRune, earthRune, lawRune);
airRune.quantity(3), earthRune, lawRune);
tpLumbSteps.setDisplayCondition(notTPlumb);
tpLumbSteps.setLockingStep(tplumbTask);
allSteps.add(tpLumbSteps);
Expand Down

0 comments on commit 744a383

Please sign in to comment.