From 8102f2f7b03410f1a8ccc38bc493a88b0b41e946 Mon Sep 17 00:00:00 2001 From: Condorra Date: Sun, 23 Apr 2023 00:34:05 +1000 Subject: [PATCH] Document install and uninstall. --- blastmud_game/src/message_handler/user_commands/help.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/blastmud_game/src/message_handler/user_commands/help.rs b/blastmud_game/src/message_handler/user_commands/help.rs index 5835ff05..85bfd70c 100644 --- a/blastmud_game/src/message_handler/user_commands/help.rs +++ b/blastmud_game/src/message_handler/user_commands/help.rs @@ -225,7 +225,11 @@ static REGISTERED_HELP_PAGES: phf::Map<&'static str, &'static str> = phf_map! { \tdeath - Deaths of players in the corp.\n\ \tconsent - Changes to corp consents (war declarations)."), "corp order" => - ansi!("corp order corpname as number\tSet the position of the corp in your list.") + ansi!("corp order corpname as number\tSet the position of the corp in your list."), + "install" => + ansi!("install item on door to direction\tInstalls hardware such as a lock on a door."), + "uninstall" => + ansi!("uninstall item from door to direction\tRemoves installed hardware such as a lock on a door."), }; static EXPLICIT_HELP_PAGES: phf::Map<&'static str, &'static str> = phf_map! { @@ -259,7 +263,7 @@ static EXPLICIT_HELP_PAGES: phf::Map<&'static str, &'static str> = phf_map! { \tdisallow action from player\n\ Consent for fight can be revoked similarly if the consent used the allow revoke option. \ Otherwise, attempting to revoke informs the other player, and it is revoked when they also issue a \ - disallow command.") + disallow command."), }; pub struct Verb;