diff --git a/evennia/commands/default/general.py b/evennia/commands/default/general.py index 21cee64fa2..3175b33421 100644 --- a/evennia/commands/default/general.py +++ b/evennia/commands/default/general.py @@ -312,7 +312,9 @@ class CmdGive(MuxCommand): if not self.args or not self.rhs: caller.msg("Usage: give = ") return - to_give = caller.search(self.lhs) + to_give = caller.search(self.lhs, location=caller, + nofound_string="You aren't carrying %s." % self.lhs, + multimatch_string="You carry more than one %s:" % self.lhs) target = caller.search(self.rhs) if not (to_give and target): return