mirror of
https://github.com/cave-story-randomizer/cave-story-randomizer
synced 2024-11-09 00:14:37 +00:00
tiny logic update to prevent the most edge case of softlocks
imagine if all weaponSNs were somehow locked behind first cave in arthur mode
This commit is contained in:
parent
174f3c5f4b
commit
068121a278
|
@ -31,7 +31,7 @@ function firstCave:new(worldGraph)
|
|||
if self.world:StartPoint() then
|
||||
return true
|
||||
elseif self.world:Arthur() or self.world:Camp() then
|
||||
return _has(items, "flight") and self.world.regions.mimigaVillage:canAccess(items)
|
||||
return _has(items, "flight") and _has(items, "weaponSN") and self.world.regions.mimigaVillage:canAccess(items)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue