summary refs log tree commit diff stats
path: root/locations.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-05-22 20:09:52 -0400
committerGitHub <noreply@github.com>2024-05-23 02:09:52 +0200
commite41bdceb052334f2c86a78ba41411a9c85df7cc5 (patch)
tree617719d43319e041236d17b740924fa0ce9a1242 /locations.py
parent808daa5b230aa0912671b263edc6de2c71b73a6a (diff)
downloadlingo-apworld-e41bdceb052334f2c86a78ba41411a9c85df7cc5.tar.gz
lingo-apworld-e41bdceb052334f2c86a78ba41411a9c85df7cc5.tar.bz2
lingo-apworld-e41bdceb052334f2c86a78ba41411a9c85df7cc5.zip
Lingo: Minor logic fixes (part 2) (#3250)
* Lingo: Minor logic fixes (part 2)

* Update the datafile

* Renamed Fearless Mastery

* Move Rhyme Room LEAP into upper room

* Rename Artistic achievement location

* Fix broken wondrous painting

* Added a test for the Wondrous painting thing
Diffstat (limited to 'locations.py')
-rw-r--r--locations.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/locations.py b/locations.py index 5ffedee..c527e52 100644 --- a/locations.py +++ b/locations.py
@@ -39,7 +39,7 @@ def load_location_data():
39 39
40 for room_name, panels in PANELS_BY_ROOM.items(): 40 for room_name, panels in PANELS_BY_ROOM.items():
41 for panel_name, panel in panels.items(): 41 for panel_name, panel in panels.items():
42 location_name = f"{room_name} - {panel_name}" 42 location_name = f"{room_name} - {panel_name}" if panel.location_name is None else panel.location_name
43 43
44 classification = LocationClassification.insanity 44 classification = LocationClassification.insanity
45 if panel.check: 45 if panel.check: