mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Correctly rename at_message_send/receive to at_msg_send/receive in accounts. Resolves #1439.
This commit is contained in:
parent
703dc9da91
commit
f47d15acf8
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue