Merge pull request #471 from delizin/master

Fix to bug #442 Mutl-word objects name doesn't work with drop and grammer fix in drop command
This commit is contained in:
Griatch 2014-02-01 00:53:16 -08:00
commit 79df48e2aa
2 changed files with 2 additions and 2 deletions

View file

@ -283,7 +283,7 @@ class CmdDrop(MuxCommand):
# now we send it into the error handler (this will output consistent
# error messages if there are problems).
obj = AT_SEARCH_RESULT(caller, self.args, results, False,
nofound_string="You don't carry %s." % self.args,
nofound_string="You aren't carrying %s." % self.args,
multimatch_string="You carry more than one %s:" % self.args)
if not obj:
return

View file

@ -259,7 +259,7 @@ class Object(TypeClass):
location=location,
attribute_name=attribute_name,
quiet=quiet,
exact=quiet)
exact=exact)
def execute_cmd(self, raw_string, sessid=None):
"""