From 5a5408479af540346b862db5f25d23773630ff76 Mon Sep 17 00:00:00 2001 From: Condorra Date: Fri, 15 Sep 2023 21:31:41 +1000 Subject: [PATCH] Make stats an alias for status. --- blastmud_game/src/message_handler/user_commands.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/blastmud_game/src/message_handler/user_commands.rs b/blastmud_game/src/message_handler/user_commands.rs index 2e339e1..968c7ec 100644 --- a/blastmud_game/src/message_handler/user_commands.rs +++ b/blastmud_game/src/message_handler/user_commands.rs @@ -229,6 +229,7 @@ static REGISTERED_COMMANDS: UserVerbRegistry = phf_map! { "st" => status::VERB, "stat" => status::VERB, + "stats" => status::VERB, "status" => status::VERB, "uninstall" => uninstall::VERB,