mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Minor change in when the give command triggers the move_to.
This commit is contained in:
parent
b9f4c6de3a
commit
079e98884f
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue