Skip to content

Commit

Permalink
Use greater or equal for terran def score
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziktofel committed Jan 31, 2024
1 parent cd0c8b0 commit d61a376
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/sc2/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -824,7 +824,7 @@ def trouble_in_paradise_requirement(self, state: CollectionState) -> bool:
return self.nova_any_weapon(state) \
and self.nova_splash(state) \
and self.terran_beats_protoss_deathball(state) \
and self.terran_defense_rating(state, True, True) > 6
and self.terran_defense_rating(state, True, True) >= 7

def night_terrors_requirement(self, state: CollectionState) -> bool:
return self.terran_common_unit(state) \
Expand Down

0 comments on commit d61a376

Please sign in to comment.