From 02e56294535f75a39bb9f4aaac56cde9e9833da7 Mon Sep 17 00:00:00 2001 From: deicidus Date: Thu, 19 Jan 2023 12:50:02 -0800 Subject: [PATCH] fix new items --- spells/menu/mud-menu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spells/menu/mud-menu b/spells/menu/mud-menu index 46054f8..839998b 100755 --- a/spells/menu/mud-menu +++ b/spells/menu/mud-menu @@ -15,7 +15,7 @@ display_menu() { settings="MUD Settings%mud-settings" exit="Exit%kill -2 $$" # Commands are run with 'eval' by the menu script, so we can't simply say 'exit'. The keyword $$ gets this scripts PID and the -2 code is SIGINT aka Ctrl-C - menu "MUD main menu:" "$look" "$cast" "$home" "$jump" "$portal" "$settings" "$exit" + menu "MUD main menu:" "$look" "$cast" "$home" "$jump" "$portal" "$install" "$admin" "$settings" "$exit" } # Catch Ctrl-C and exit