Skip to content

Commit

Permalink
Rag and Bone Man I: polish (#1916)
Browse files Browse the repository at this point in the history
  • Loading branch information
pajlada authored Jan 2, 2025
1 parent a06e280 commit 00e8978
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public void setupSteps()
{
talkToOddOldMan = new NpcStep(this, NpcID.ODD_OLD_MAN, new WorldPoint(3362, 3502, 0),
"Talk to the Odd Old Man east of Varrock.");
talkToOddOldMan.addDialogSteps("Anything I can do to help?", "Yes");
talkToOddOldMan.addDialogSteps("Anything I can do to help?", "Yes.");

killGiantRat = new NpcStep(this, NpcID.GIANT_RAT_2856, new WorldPoint(3289, 3373, 0),
"Kill a giant rat south east of Varrock.", true);
Expand Down Expand Up @@ -292,7 +292,7 @@ public void setupSteps()
stepsForRagAndBoneManI.put(RagBoneState.RAM_SKULL, killRam);

stepsForRagAndBoneManI.put(RagBoneState.GOBLIN_SKULL, killGoblin);
stepsForRagAndBoneManI.put(RagBoneState.BIG_FROG_LEGS, killFrogSteps);
stepsForRagAndBoneManI.put(RagBoneState.BIG_FROG_LEG, killFrogSteps);
stepsForRagAndBoneManI.put(RagBoneState.MONKEY_PAW, killMonkey);
stepsForRagAndBoneManI.put(RagBoneState.GIANT_BAT_WING, killBatSteps);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class RagBoneGroups
public static List<RagBoneState> getRagBoneIStates()
{
return Arrays.asList(RagBoneState.GIANT_RAT_BONE, RagBoneState.UNICORN_BONE,
RagBoneState.BEAR_RIBS, RagBoneState.RAM_SKULL, RagBoneState.GOBLIN_SKULL, RagBoneState.BIG_FROG_LEGS,
RagBoneState.BEAR_RIBS, RagBoneState.RAM_SKULL, RagBoneState.GOBLIN_SKULL, RagBoneState.BIG_FROG_LEG,
RagBoneState.MONKEY_PAW, RagBoneState.GIANT_BAT_WING);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public enum RagBoneState
CAVE_GOBLIN_SKULL("Cave Goblin", 32),

// P1
BIG_FROG_LEGS("Big Frog Legs", 33),
BIG_FROG_LEG("Big Frog Leg", 33),

// P2
VULTURE_WING("Vulture", 34),
Expand Down

0 comments on commit 00e8978

Please sign in to comment.