mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Logger error typo fix.
announce_move_from() exception currently claims to be at_announce_move(). No longer, with this change!
This commit is contained in:
parent
64b9f9e508
commit
6f4031fea3
1 changed files with 1 additions and 1 deletions
|
|
@ -928,7 +928,7 @@ class DefaultObject(ObjectDB, metaclass=TypeclassBase):
|
|||
try:
|
||||
self.announce_move_from(destination, **kwargs)
|
||||
except Exception as err:
|
||||
logerr(errtxt.format(err="at_announce_move()"), err)
|
||||
logerr(errtxt.format(err="announce_move_from()"), err)
|
||||
return False
|
||||
|
||||
# Perform move
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue