From 44bb046cddddbb4e3c33e375756d65c1294643a7 Mon Sep 17 00:00:00 2001 From: Hydrox6 Date: Fri, 2 Jul 2021 13:11:29 +0100 Subject: [PATCH] chat commands: add shorthand names for phosani's nightmare --- .../plugins/chatcommands/ChatCommandsPlugin.java | 10 ++++++++++ 1 file changed, 10 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 5e5f95d903..9a998e8aca 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 @@ -1738,12 +1738,22 @@ public class ChatCommandsPlugin extends Plugin case "the corrupted gauntlet": return "Corrupted Gauntlet"; + // The Nightmare case "nm": case "tnm": case "nmare": case "the nightmare": return "Nightmare"; + // Phosani's Nightmare + case "pnm": + case "phosani": + case "phosanis": + case "phosani nm": + case "phosani nightmare": + case "phosanis nightmare": + return "Phosani's Nightmare"; + // Hallowed Sepulchre case "hs": case "sepulchre":