Skip to content

Commit af9b6cd

Browse files
committed
Two more minors logic modification
1 parent 025b431 commit af9b6cd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

worlds/aquaria/Regions.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,8 @@ def __connect_forest_regions(self) -> None:
657657
self.forest_br, self.forest_bl)
658658
self.__connect_one_way_regions("Forest bottom left area", "Forest bottom left area, spirit crystals",
659659
self.forest_bl, self.forest_bl_sc,
660-
lambda state: _has_energy_attack_item(state, self.player))
660+
lambda state: _has_energy_attack_item(state, self.player) or
661+
_has_fish_form(state, self.player))
661662
self.__connect_one_way_regions("Forest bottom left area, spirit crystals", "Forest bottom left area",
662663
self.forest_bl_sc, self.forest_bl)
663664
self.__connect_regions("Forest bottom right", "Forest top right area",
@@ -1041,7 +1042,7 @@ def __adjusting_soup_rules(self) -> None:
10411042
Modify rules for location that need soup
10421043
"""
10431044
add_rule(self.multiworld.get_location("Turtle cave, Urchin Costume", self.player),
1044-
lambda state: _has_beast_and_soup_form(state, self.player))
1045+
lambda state: _has_hot_soup(state, self.player))
10451046
add_rule(self.multiworld.get_location("The Veil top right area, bulb at the top of the waterfall", self.player),
10461047
lambda state: _has_beast_and_soup_form(state, self.player))
10471048

0 commit comments

Comments
 (0)