diff --git a/Server/src/main/core/game/system/command/sets/AnimationCommandSet.kt b/Server/src/main/core/game/system/command/sets/AnimationCommandSet.kt index 0b3de8287..f9e31b091 100644 --- a/Server/src/main/core/game/system/command/sets/AnimationCommandSet.kt +++ b/Server/src/main/core/game/system/command/sets/AnimationCommandSet.kt @@ -35,7 +35,7 @@ class AnimationCommandSet : CommandSet(Privilege.ADMIN) { player.animate(animation) } - define("anims", Privilege.ADMIN, "::anims <(opt) Duration Per Animation>", "Plays animations from the From ID to the To ID, with a delay of 3 between animations, unless specified otherwise"){ player, args -> + define("anims", Privilege.ADMIN, "::anims From Animation ID To Animation ID (opt) Duration Per Animation", "Plays animations from the From ID to the To ID, with a delay of 3 between animations, unless specified otherwise"){ player, args -> if (args.size < 3) { reject(player, "Syntax error: ::anims <(opt) Duration Per Animation>") @@ -58,7 +58,7 @@ class AnimationCommandSet : CommandSet(Privilege.ADMIN) { } /** Same as ::anims but only plays animations compatible with the player/humanoid skeleton. */ - define("panims", Privilege.ADMIN, "::panims <(opt) Duration Per Animation>", "Same as ::anims but only plays animations compatible with the player/humanoid skeleton."){ player, args -> + define("panims", Privilege.ADMIN, "::panims From Animation ID To Animation ID (opt) Duration Per Animation", "Same as ::anims but only plays animations compatible with the player/humanoid skeleton."){ player, args -> if (args.size < 3) { reject(player, "Syntax error: ::panims <(opt) Duration Per Animation>") @@ -87,7 +87,7 @@ class AnimationCommandSet : CommandSet(Privilege.ADMIN) { } /** Cycles animations on an interface child. */ - define("ianims", Privilege.ADMIN, "::ianims <(opt) Duration>", "Cycles animations on an interface child.") { player, args -> + define("ianims", Privilege.ADMIN, "::ianims Interface ID Child ID From Animation ID To Animation ID (opt) Duration", "Cycles animations on an interface child.") { player, args -> if (args.size !in 4..6) { reject(player, "Syntax error: ::ianims <(opt) Duration>") }