Merge branch 'master' into develop

This commit is contained in:
Griatch 2018-10-21 00:19:34 +02:00
commit 87abbbcd2e
6 changed files with 120 additions and 7 deletions

View file

@ -612,12 +612,12 @@ class CmdDesc(COMMAND_DEFAULT_CLASS):
self.edit_handler()
return
if self.rhs:
if '=' in self.args:
# We have an =
obj = caller.search(self.lhs)
if not obj:
return
desc = self.rhs
desc = self.rhs or ''
else:
obj = caller.location or self.msg("|rYou can't describe oblivion.|n")
if not obj: