Skip to content

Commit

Permalink
Blasphemous: Fix logic for Laudes (ArchipelagoMW#1724)
Browse files Browse the repository at this point in the history
  • Loading branch information
TRPG0 authored Apr 16, 2023
1 parent acd3cb4 commit 50d9ab0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion worlds/blasphemous/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,9 @@ def _blasphemous_3_masks(self, player):
return self.has_group("masks", player, 3)

def _blasphemous_laudes_gate(self, player):
return self.has_all({"Petrified Bell", "Blood Perpetuated in Sand", "Three Gnarled Tongues", "Key of the Secular", "Key of the Scribe", "Verses Spun from Gold"}, player)
return self.has_all({"Petrified Bell", "Blood Perpetuated in Sand", "Three Gnarled Tongues", \
"Key of the Secular", "Key of the Scribe"}, player) and \
self.has("Verses Spun from Gold", player, 4)

# Ten Piedad, Tres Angustias, Our Lady of the Charred Visage
def _blasphemous_wound_boss_easy(self, player):
Expand Down

0 comments on commit 50d9ab0

Please sign in to comment.