From b44f18ae365a2531cfd98cadd44c855991cd1578 Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 11 Apr 2019 20:29:09 -0400 Subject: [PATCH] chat commands: add beginner clues Co-authored-by: Robin Rijkeboer --- .../client/plugins/chatcommands/ChatCommandsPlugin.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java b/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java index cf806f9da3..388ebb300a 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/ChatCommandsPlugin.java @@ -831,6 +831,9 @@ public class ChatCommandsPlugin extends Plugin switch (level) { + case "beginner": + hiscoreSkill = result.getClueScrollBeginner(); + break; case "easy": hiscoreSkill = result.getClueScrollEasy(); break;