Minor change in when the give command triggers the move_to.

This commit is contained in:
Griatch 2014-09-01 11:36:36 +02:00
parent b9f4c6de3a
commit 079e98884f

View file

@ -327,8 +327,8 @@ class CmdGive(MuxCommand):
caller.msg("You are not holding %s." % to_give.key)
return
# give object
to_give.move_to(target, quiet=True)
caller.msg("You give %s to %s." % (to_give.key, target.key))
to_give.move_to(target, quiet=True)
target.msg("%s gives you %s." % (caller.key, to_give.key))