First stepping around xyzgrid, still issues

This commit is contained in:
Griatch 2021-07-11 11:25:03 +02:00
parent 75319d3941
commit de66313ec9
8 changed files with 159 additions and 16 deletions

View file

@ -83,7 +83,10 @@ class CmdLook(COMMAND_DEFAULT_CLASS):
target = caller.search(self.args)
if not target:
return
self.msg((caller.at_look(target), {"type": "look"}), options=None)
desc = caller.at_look(target)
# add the type=look to the outputfunc to make it
# easy to separate this output in client.
self.msg(text=(desc, {"type": "look"}), options=None)
class CmdNick(COMMAND_DEFAULT_CLASS):