From 963dc72d198607efbca937f250f4fbd127f0ffe4 Mon Sep 17 00:00:00 2001 From: Max Weber Date: Tue, 22 Mar 2022 12:21:00 -0600 Subject: [PATCH] rl-client/chatcommands/Pet: add abyssal protector --- .../java/net/runelite/client/plugins/chatcommands/Pet.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/Pet.java b/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/Pet.java index 2583be2d22..712fc5b2b7 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/Pet.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/chatcommands/Pet.java @@ -80,7 +80,9 @@ enum Pet LITTLE_NIGHTMARE("Little nightmare", ItemID.LITTLE_NIGHTMARE), LIL_CREATOR("Lil' creator", ItemID.LIL_CREATOR), TINY_TEMPOR("Tiny tempor", ItemID.TINY_TEMPOR), - NEXLING("Nexling", ItemID.NEXLING); + NEXLING("Nexling", ItemID.NEXLING), + ABYSSAL_PROTECTOR("Abyssal protector", ItemID.ABYSSAL_PROTECTOR), + ; private final String name; private final Integer iconID;