mirror of
https://github.com/evennia/evennia.git
synced 2026-03-20 23:06:31 +01:00
Fixed recursion with CmdExamine
This commit is contained in:
parent
9e067f6f84
commit
8fe7f3d086
1 changed files with 1 additions and 1 deletions
|
|
@ -2618,7 +2618,7 @@ class CmdExamine(ObjManipCommand):
|
|||
text (str): The text to send.
|
||||
|
||||
"""
|
||||
self.msg(text=(text, {"type": "examine"}))
|
||||
super().msg(text=(text, {"type": "examine"}))
|
||||
|
||||
def format_key(self, obj):
|
||||
return f"{obj.name} ({obj.dbref})"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue