Ugh ... getting sloppy
This commit is contained in:
parent
e7cd87c0c9
commit
9c607157cb
1 changed files with 5 additions and 1 deletions
|
|
@ -256,7 +256,11 @@ class CmdGMTrigger(Command):
|
||||||
if event.startswith("@"):
|
if event.startswith("@"):
|
||||||
self.caller.execute_cmd(event[1:])
|
self.caller.execute_cmd(event[1:])
|
||||||
else:
|
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,
|
delay(time_delay * idx,
|
||||||
self.caller.location.msg_contents,
|
self.caller.location.msg_contents,
|
||||||
"\n" + msg)
|
"\n" + msg)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue