Example of how to tag msg() with a type

This commit is contained in:
friarzen 2018-03-17 21:50:11 +00:00
parent 8b0eb66ba6
commit 8680708d52

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):