Skip to content

Commit

Permalink
Merge pull request #193 from MatthewMarinets/mm/adjust_resource_optio…
Browse files Browse the repository at this point in the history
…n_ranges

sc2: adjusted supply/resource option range maxima
  • Loading branch information
Ziktofel authored May 1, 2024
2 parents 316634f + 86766c7 commit e963d37
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions worlds/sc2/Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ class MineralsPerItem(Range):
"""
display_name = "Minerals Per Item"
range_start = 0
range_end = 500
range_end = 200
default = 25


Expand All @@ -751,7 +751,7 @@ class VespenePerItem(Range):
"""
display_name = "Vespene Per Item"
range_start = 0
range_end = 500
range_end = 200
default = 25


Expand All @@ -761,8 +761,8 @@ class StartingSupplyPerItem(Range):
"""
display_name = "Starting Supply Per Item"
range_start = 0
range_end = 200
default = 5
range_end = 16
default = 2


@dataclass
Expand Down

0 comments on commit e963d37

Please sign in to comment.