From 030e252f36fab0e7e8a75c7057d9570e248107e4 Mon Sep 17 00:00:00 2001 From: Ahmed Charles Date: Fri, 16 Oct 2015 17:25:50 +0000 Subject: [PATCH] The rest of Evennia uses lowercase i in UnloggedinCmdSet. --- evennia/contrib/menu_login.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/contrib/menu_login.py b/evennia/contrib/menu_login.py index f62ca8a005..7868aa9985 100644 --- a/evennia/contrib/menu_login.py +++ b/evennia/contrib/menu_login.py @@ -15,7 +15,7 @@ Install is simple: To your settings file, add/edit the line: -CMDSET_UNLOGGEDIN = "contrib.menu_login.UnloggedInCmdSet" +CMDSET_UNLOGGEDIN = "contrib.menu_login.UnloggedinCmdSet" That's it. Reload the server and try to log in to see it. @@ -323,7 +323,7 @@ node3 = MenuNode("node3", text=LOGIN_SCREEN_HELP, # access commands -class UnloggedInCmdSet(CmdSet): +class UnloggedinCmdSet(CmdSet): "Cmdset for the unloggedin state" key = "DefaultUnloggedin" priority = 0