diff options
Diffstat (limited to 'player_logic.py')
-rw-r--r-- | player_logic.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/player_logic.py b/player_logic.py index b21735c..83217d7 100644 --- a/player_logic.py +++ b/player_logic.py | |||
@@ -412,7 +412,7 @@ class LingoPlayerLogic: | |||
412 | required_painting_rooms += REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS | 412 | required_painting_rooms += REQUIRED_PAINTING_WHEN_NO_DOORS_ROOMS |
413 | req_exits = [painting_id for painting_id, painting in PAINTINGS.items() if painting.required_when_no_doors] | 413 | req_exits = [painting_id for painting_id, painting in PAINTINGS.items() if painting.required_when_no_doors] |
414 | 414 | ||
415 | def is_req_enterable(painting_id: str, painting: Painting) -> bool: | 415 | def is_req_enterable(painting: Painting) -> bool: |
416 | if painting.exit_only or painting.disable or painting.req_blocked\ | 416 | if painting.exit_only or painting.disable or painting.req_blocked\ |
417 | or painting.room in required_painting_rooms: | 417 | or painting.room in required_painting_rooms: |
418 | return False | 418 | return False |
@@ -433,7 +433,7 @@ class LingoPlayerLogic: | |||
433 | return True | 433 | return True |
434 | 434 | ||
435 | req_enterable = [painting_id for painting_id, painting in PAINTINGS.items() | 435 | req_enterable = [painting_id for painting_id, painting in PAINTINGS.items() |
436 | if is_req_enterable(painting_id, painting)] | 436 | if is_req_enterable(painting)] |
437 | req_exits += [painting_id for painting_id, painting in PAINTINGS.items() | 437 | req_exits += [painting_id for painting_id, painting in PAINTINGS.items() |
438 | if painting.exit_only and painting.required] | 438 | if painting.exit_only and painting.required] |
439 | req_entrances = world.random.sample(req_enterable, len(req_exits)) | 439 | req_entrances = world.random.sample(req_enterable, len(req_exits)) |