Fixed hard drive from containing the mam + incremented default value for harddrive progression

This commit is contained in:
Jarno Westhof
2025-01-19 18:56:27 +01:00
parent 08da8188e8
commit c41c0bf914
2 changed files with 6 additions and 3 deletions

View File

@@ -162,11 +162,14 @@ class DropPod(LocationData):
# without you just going to have to figure it your yourself
def logic_rule(state: CollectionState):
return not unlocked_by or state_logic and state_logic.can_produce(state, unlocked_by)
return not unlocked_by or (state_logic
and state_logic.can_produce(state, unlocked_by)
and state_logic.can_build(state, "MAM"))
return logic_rule
super().__init__(get_region(data.gassed, data.radioactive), f"Hard drive random check {locationId - 1338600}", locationId,
super().__init__(
get_region(data.gassed, data.radioactive), f"Hard drive random check {locationId - 1338600}", locationId,
non_progression = not can_hold_progression, rule = get_rule(data.item, data.power))

View File

@@ -106,7 +106,7 @@ class HardDriveProgressionLimit(Range):
There are 118 total hard drives.
"""
display_name = "Hard Drive Progression Items"
default = 0
default = 20
range_start = 0
range_end = 100