From 9c607157cbeab3e93759340e5610d935f007a397 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Tue, 27 May 2025 18:39:22 -0700 Subject: [PATCH] Ugh ... getting sloppy --- commands/wizards.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/commands/wizards.py b/commands/wizards.py index 261fdeb..d27c118 100755 --- a/commands/wizards.py +++ b/commands/wizards.py @@ -256,7 +256,11 @@ class CmdGMTrigger(Command): if event.startswith("@"): self.caller.execute_cmd(event[1:]) else: - msg = target.gendered_text(routput(event, name)) + if target: + msg = target.gendered_text(routput(event, name)) + else: + msg = routput(event) + delay(time_delay * idx, self.caller.location.msg_contents, "\n" + msg)