Skip to content

Commit

Permalink
Fix option access
Browse files Browse the repository at this point in the history
  • Loading branch information
PoryGone committed Nov 30, 2024
1 parent 638be78 commit 22c5348
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 @@ -1892,7 +1892,7 @@ async def process_client_cmd(ctx: Context, client: Client, args: dict):
return

target_item, target_player, flags = ctx.locations[client.slot][location]
if create_as_hint and self.ctx.hint_cost <= 100:
if create_as_hint and ctx.hint_cost <= 100:
hints.extend(collect_hint_location_id(ctx, client.team, client.slot, location,
HintStatus.HINT_UNSPECIFIED))
locs.append(NetworkItem(target_item, location, target_player, flags))
Expand Down

0 comments on commit 22c5348

Please sign in to comment.