From 8fe7f3d0862b62ae9baf4aca0ab54c4ac836d64b Mon Sep 17 00:00:00 2001 From: Andrew Bastien Date: Mon, 27 Nov 2023 09:29:31 -0500 Subject: [PATCH] Fixed recursion with CmdExamine --- evennia/commands/default/building.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evennia/commands/default/building.py b/evennia/commands/default/building.py index 3d7e5e6fa8..da6a05e67e 100644 --- a/evennia/commands/default/building.py +++ b/evennia/commands/default/building.py @@ -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})"