Skip to content

Commit

Permalink
3
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhar committed Dec 12, 2023
1 parent 25defb9 commit b4978c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MultiServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -981,7 +981,7 @@ def send_items_in_bag(ctx: Context):

for item in items_to_send:
item_id, target_player, flags = ctx.locations[item.player][item.location]
target_players.add(ctx.player_names[(0, target_player)])
target_players.append(ctx.player_names[(0, target_player)])
logging.info('(Team #%d) Gifted %s to %s (%s)' % (
0, ctx.item_names[item.item], ctx.player_names[(0, target_player)], ctx.location_names[item.location]))
send_items_to(ctx, 0, target_player, item)
Expand Down

0 comments on commit b4978c2

Please sign in to comment.