diff --git a/core/system_menu_method.js b/core/system_menu_method.js index a75d91d9..ab797db4 100644 --- a/core/system_menu_method.js +++ b/core/system_menu_method.js @@ -46,9 +46,14 @@ function login(callingMenu, formData, extraArgs) { 'Already logged in' ); - // :TODO: display message/art/etc. + // :TODO: display custom message if present + + client.term.write('\nA user by that name is already logged in.\n'); + + setTimeout(function timeout() { + client.gotoMenuModule( { name : callingMenu.menuConfig.fallback } ); + }, 500); - client.gotoMenuModule( { name : callingMenu.menuConfig.fallback } ); return; }