diff options
Diffstat (limited to 'client/game.gd')
-rw-r--r-- | client/game.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/game.gd b/client/game.gd index a296706d..c3b34332 100644 --- a/client/game.gd +++ b/client/game.gd @@ -168,6 +168,7 @@ func handle_packet(p): else: var pl: Player = players[p.location.player] var i = ItemFactory.produce(item_names[p.item], pl.hand_base) + i.position = pl.hand_base.global_position add_child(i) i.name = item_names[p.item] pl.set_item(i) |