Implemented working MCCP (data compression) and MSSP (mud-listing crawler support). Moved all user-level customization modules from gamesrc/world to gamesrc/conf to reduce clutter.

This commit is contained in:
Griatch 2011-11-20 11:52:01 +01:00
parent a4f8019c4a
commit fb78758356
15 changed files with 465 additions and 48 deletions

View file

@ -237,13 +237,13 @@ class CmdUnconnectedLook(MuxCommand):
string = ansi.parse_ansi(screen)
self.caller.msg(string)
except Exception, e:
self.caller.msg(e)
self.caller.msg("Error in CONNECTION_SCREEN MODULE: " + str(e))
self.caller.msg("Connect screen not found. Enter 'help' for aid.")
class CmdUnconnectedHelp(MuxCommand):
"""
This is an unconnected version of the help command,
for simplicity. It shows a pane or info.
for simplicity. It shows a pane of info.
"""
key = "help"
aliases = ["h", "?"]