From 3a3dbeed3c75908cbeab0a06cac547ec706381e3 Mon Sep 17 00:00:00 2001 From: InspectorCaracal <51038201+InspectorCaracal@users.noreply.github.com> Date: Fri, 1 Apr 2022 14:39:23 -0600 Subject: [PATCH] start script regardless of whether newly created --- evennia/utils/containers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/utils/containers.py b/evennia/utils/containers.py index 6b709fbf75..85678ee03e 100644 --- a/evennia/utils/containers.py +++ b/evennia/utils/containers.py @@ -167,7 +167,7 @@ class GlobalScriptContainer(Container): # store a hash representation of the setup script.attributes.add("_global_script_settings", compare_hash, category="settings_hash") - script.start() + script.start() return script