Skip to content

Commit

Permalink
sc2: Fixing an incorrect variable in war council auto-send
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewMarinets committed Jul 3, 2024
1 parent 817ec8a commit 5553165
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/sc2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ def calculate_items(ctx: SC2Context) -> typing.Dict[SC2Race, typing.List[int]]:

# War council option
if not ctx.allow_unit_nerfs:
accumulators[SC2Race.PROTOSS][ProtossItemType.War_Council] = (1 << 30) - 1
accumulators[SC2Race.PROTOSS][ProtossItemType.War_Council.flag_word] = (1 << 30) - 1

# Deprecated Orbital Command handling (Backwards compatibility):
if orbital_command_count > 0:
Expand Down

0 comments on commit 5553165

Please sign in to comment.