From 4f6dac29cfc76b1029f9e3d343a668ea3f350ae8 Mon Sep 17 00:00:00 2001 From: Vortrex <3858226+VortrexFTW@users.noreply.github.com> Date: Thu, 29 Sep 2022 11:10:22 -0500 Subject: [PATCH] Fix wrong util name being used in stopanim action tip --- scripts/server/animation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/animation.js b/scripts/server/animation.js index 8b704706..f809e948 100644 --- a/scripts/server/animation.js +++ b/scripts/server/animation.js @@ -45,7 +45,7 @@ function playPlayerAnimationCommand(command, params, client) { } if (hasPlayerSeenActionTip(client, "AnimationStop")) { - messagePlayerTip(client, getIndexedLocaleString(client, "ActionTips", "AnimationStopTip", "{ALTCOLOUR}/stopanim{MAINCOLOUR}")); + messagePlayerTip(client, getGroupedLocaleString(client, "ActionTips", "AnimationStop", "{ALTCOLOUR}/stopanim{MAINCOLOUR}")); } makePlayerPlayAnimation(client, animationSlot, animationPositionOffset); }