summary refs log tree commit diff stats
path: root/rules.py
diff options
context:
space:
mode:
Diffstat (limited to 'rules.py')
-rw-r--r--rules.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/rules.py b/rules.py index d91c53f..ed84c56 100644 --- a/rules.py +++ b/rules.py
@@ -62,6 +62,9 @@ def _lingo_can_satisfy_requirements(state: CollectionState, access: AccessRequir
62 if access.the_master and not lingo_can_use_mastery_location(state, world): 62 if access.the_master and not lingo_can_use_mastery_location(state, world):
63 return False 63 return False
64 64
65 if access.postgame and state.has("Prevent Victory", world.player):
66 return False
67
65 return True 68 return True
66 69
67 70