From 092545331f021d8efcedc03f55a0bffddbf0af03 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Sun, 8 May 2022 06:47:56 -0500 Subject: [PATCH] Fix animation list header string --- scripts/server/animation.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/server/animation.js b/scripts/server/animation.js index 6b45bdca..6d722ef9 100644 --- a/scripts/server/animation.js +++ b/scripts/server/animation.js @@ -25,7 +25,7 @@ function playPlayerAnimationCommand(command, params, client) { if(!animationSlot) { messagePlayerError(client, getLocaleString(client, "InvalidAnimation")); - messagePlayerInfo(client, getLocaleString(client, "AnimationCommandTip"), `{ALTCOLOUR}/animlist{MAINCOLOUR}`); + messagePlayerInfo(client, getLocaleString(client, "AnimationCommandTip", `{ALTCOLOUR}/animlist{MAINCOLOUR}`)); return false; } @@ -64,7 +64,7 @@ function stopPlayerAnimationCommand(command, params, client) { getPlayerData(client).animationStart = 0; getPlayerData(client).animationForced = false; - setPlayerMouseCameraState(client, false); + //setPlayerMouseCameraState(client, false); } // ===========================================================================