From: Darren Date: Mon, 9 Jun 2014 12:45:54 +0000 (+0100) Subject: Missing exit command from controlinterface help X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b5852db6af4aac688271ff3b915b3f02e290f3e5;p=KiwiIRC.git Missing exit command from controlinterface help --- diff --git a/server/controlinterface.js b/server/controlinterface.js index 2bcf32c..fa8f0e6 100644 --- a/server/controlinterface.js +++ b/server/controlinterface.js @@ -80,6 +80,8 @@ commands.help = function(args, raw) { var help = 'Available commands:\n'; help += 'help\n'; help += ' This help menu\n'; + help += 'exit\n'; + help += ' Close and exit this Kiwi admin console\n'; help += 'reconfig\n'; help += ' Reload the config.js file\n'; help += 'stats\n';