summary refs log tree commit diff stats
path: root/rules.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-07-24 08:34:51 -0400
committerGitHub <noreply@github.com>2024-07-24 14:34:51 +0200
commit1c142350c379d503de512953072f55a8737c30d2 (patch)
tree40b469c4be80a2f273706a66683e9074217a6045 /rules.py
parentcccdf6481571cd883c9519cde0a717b6f336fbda (diff)
downloadlingo-apworld-1c142350c379d503de512953072f55a8737c30d2.tar.gz
lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.tar.bz2
lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.zip
Lingo: Add option to prevent shuffling postgame (#3350)
* Lingo: Add option to prevent shuffling postgame

* Allow roof access on door shuffle

* Fix broken unit test

* Simplified THE END edge case

* Revert unnecessary change

* Review comments

* Fix mastery unit test

* Update generated.dat

* Added player's name to error message
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