From 9d00f1ddfd63056c6439eed10e859f41c018d9ca Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 1 Sep 2016 16:55:49 +0200 Subject: [PATCH] Fix a wrongly called variable in ticherhandler. --- evennia/scripts/tickerhandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/scripts/tickerhandler.py b/evennia/scripts/tickerhandler.py index c80ac64fa..801c33ca0 100644 --- a/evennia/scripts/tickerhandler.py +++ b/evennia/scripts/tickerhandler.py @@ -194,7 +194,7 @@ class Ticker(object): if self._is_ticking: # protects the subscription dict from # updating while it is looping - self._to_start.append((store_key, (args, kwargs))) + self._to_add.append((store_key, (args, kwargs))) else: start_delay = kwargs.pop("_start_delay", None) self.subscriptions[store_key] = (args, kwargs)