Skip to content

Commit

Permalink
lower amount of items required for fortress
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLX5 committed Aug 7, 2024
1 parent 0a1bf06 commit c3d875a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions worlds/mmx/Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,8 @@ class SigmaWeaponCount(Range):
"""
display_name = "Sigma Weapon Count"
range_start = 0
range_end = 8
default = 8
range_end = 6
default = 6

class SigmaArmorUpgradeCount(Range):
"""
Expand All @@ -208,17 +208,17 @@ class SigmaHeartTankCount(Range):
"""
display_name = "Sigma Heart Tank Count"
range_start = 0
range_end = 8
default = 8
range_end = 6
default = 6

class SigmaSubTankCount(Range):
"""
How many Sub Tanks are required to access Sigma's Fortress.
"""
display_name = "Sigma Sub Tank Count"
range_start = 0
range_end = 4
default = 4
range_end = 2
default = 2

class ButtonConfiguration(OptionDict):
"""
Expand Down

0 comments on commit c3d875a

Please sign in to comment.