Example of how to tag msg() with a type

This commit is contained in:
friarzen 2018-03-17 21:50:11 +00:00
parent b55638b622
commit f95f66633d

View file

@ -71,7 +71,7 @@ class CmdLook(COMMAND_DEFAULT_CLASS):
target = caller.search(self.args)
if not target:
return
self.msg(caller.at_look(target))
self.msg((caller.at_look(target), {'type':'look'}), options=None)
class CmdNick(COMMAND_DEFAULT_CLASS):