From 946472be76d7eb8b0211f00116bd855dc68d321c Mon Sep 17 00:00:00 2001 From: Chris Routh Date: Mon, 5 Sep 2022 20:44:31 -0700 Subject: [PATCH] Fix missing `evennia.` in setting Fixes the CONNECTION_SCREEN_MODULE missing the evennia. before contrib. --- docs/source/Contribs/Contrib-Menu-Login.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Contribs/Contrib-Menu-Login.md b/docs/source/Contribs/Contrib-Menu-Login.md index 9c47216b6d..927210e3cf 100644 --- a/docs/source/Contribs/Contrib-Menu-Login.md +++ b/docs/source/Contribs/Contrib-Menu-Login.md @@ -11,7 +11,7 @@ menu system `EvMenu` under the hood. To install, add this to `mygame/server/conf/settings.py`: CMDSET_UNLOGGEDIN = "evennia.contrib.base_systems.menu_login.UnloggedinCmdSet" - CONNECTION_SCREEN_MODULE = "contrib.base_systems.menu_login.connection_screens" + CONNECTION_SCREEN_MODULE = "evennia.contrib.base_systems.menu_login.connection_screens" Reload the server and reconnect to see the changes.