From 2135ec05f2a20d12fffe98ec39bc311ca12d2929 Mon Sep 17 00:00:00 2001 From: tajmone Date: Mon, 9 Mar 2015 11:06:48 +0100 Subject: [PATCH] docstrings and typos in "\utils\" and "\scripts\" --- evennia/scripts/scripts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/evennia/scripts/scripts.py b/evennia/scripts/scripts.py index 849c2cb7c1..1f7ef065e7 100644 --- a/evennia/scripts/scripts.py +++ b/evennia/scripts/scripts.py @@ -111,6 +111,7 @@ class ScriptBase(ScriptDB): """ Base class for scripts. Don't inherit from this, inherit from the class `DefaultScript` below instead. + """ __metaclass__ = TypeclassBase objects = ScriptManager() @@ -279,6 +280,7 @@ class ScriptBase(ScriptDB): """ This stops a running script and stores its active state. It WILL NOT call the `at_stop()` hook. + """ if not self.db._paused_time: # only allow pause if not already paused