From af98c463715306637d8f5fade353f056f7febd3f Mon Sep 17 00:00:00 2001 From: Olivier <75835176+JohnsonMichaels123@users.noreply.github.com> Date: Tue, 29 Dec 2020 08:58:56 -0800 Subject: [PATCH] Added Animations for Guard NPC (#459) Guard NPC now has proper animations.. --- .../java/com/rebotted/game/content/combat/npcs/NpcEmotes.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/2006Redone Server/src/main/java/com/rebotted/game/content/combat/npcs/NpcEmotes.java b/2006Redone Server/src/main/java/com/rebotted/game/content/combat/npcs/NpcEmotes.java index 344ca3fc..7f5f89be 100644 --- a/2006Redone Server/src/main/java/com/rebotted/game/content/combat/npcs/NpcEmotes.java +++ b/2006Redone Server/src/main/java/com/rebotted/game/content/combat/npcs/NpcEmotes.java @@ -11,6 +11,7 @@ import com.rebotted.game.players.Player; public enum NpcEmotes { MAN(new int[] {1, 2, 3, 4, 5, 6}, 422, 1834, 836), + GUARD(new int[] {9, 10}, 412, 404, 836), GARGOYLE(new int[] {1610, 1611}, 1517, 1519, 1518), SKELETAL_WYVERN(new int[] {3068}, 2989, 2988, 2987), BAT(new int[] {412, 78}, 30, 31, 36), @@ -186,4 +187,4 @@ public enum NpcEmotes { } return 2304; } -} \ No newline at end of file +}