From e3c3214f9f841bae03e441d0aa31f610669f0ca8 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 17 Apr 2015 11:37:44 +0200 Subject: [PATCH] The at_initial_setup hook was called with the wrong name in setup_default. Fixed now. Resolves #743. --- evennia/settings_default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/settings_default.py b/evennia/settings_default.py index 78c6264105..0ac2610a4f 100644 --- a/evennia/settings_default.py +++ b/evennia/settings_default.py @@ -235,7 +235,7 @@ CONNECTION_SCREEN_MODULE = "server.conf.connection_screens" # named at_initial_setup(). This hook method can be used to customize # the server's initial setup sequence (the very first startup of the system). # The check will fail quietly if module doesn't exist or fails to load. -AT_INITIAL_SETUP_HOOK_MODULE = "server.conf.at_initial_setup_hook" +AT_INITIAL_SETUP_HOOK_MODULE = "server.conf.at_initial_setup" # Module containing your custom at_server_start(), at_server_reload() and # at_server_stop() methods. These methods will be called every time # the server starts, reloads and resets/stops respectively.