Fix wrong util name being used in stopanim action tip

This commit is contained in:
Vortrex
2022-09-29 11:10:22 -05:00
parent 1e4cf380ff
commit 4f6dac29cf

View File

@@ -45,7 +45,7 @@ function playPlayerAnimationCommand(command, params, client) {
} }
if (hasPlayerSeenActionTip(client, "AnimationStop")) { 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); makePlayerPlayAnimation(client, animationSlot, animationPositionOffset);
} }