From f47d15acf83596e6836c732ce92394f8030fa229 Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 21 Sep 2017 09:32:00 +0200 Subject: [PATCH] Correctly rename at_message_send/receive to at_msg_send/receive in accounts. Resolves #1439. --- evennia/accounts/accounts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/accounts/accounts.py b/evennia/accounts/accounts.py index b06a0661ac..88fc60a19a 100644 --- a/evennia/accounts/accounts.py +++ b/evennia/accounts/accounts.py @@ -810,7 +810,7 @@ class DefaultAccount(with_metaclass(TypeclassBase, AccountDB)): """ pass - def at_message_receive(self, message, from_obj=None, **kwargs): + def at_msg_receive(self, message, from_obj=None, **kwargs): """ This is currently unused. @@ -821,7 +821,7 @@ class DefaultAccount(with_metaclass(TypeclassBase, AccountDB)): """ return True - def at_message_send(self, message, to_object, **kwargs): + def at_msg_send(self, message, to_object, **kwargs): """ This is currently unused.