From 0fd59063d97005f4465a605466bf21e00d1d0bbb Mon Sep 17 00:00:00 2001 From: Jarno Westhof Date: Thu, 31 Mar 2022 21:51:24 +0200 Subject: [PATCH] [Timespinner] Fixed typo --- worlds/timespinner/Locations.py | 4 ++-- worlds/timespinner/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/worlds/timespinner/Locations.py b/worlds/timespinner/Locations.py index 36e86325..cd87ac23 100644 --- a/worlds/timespinner/Locations.py +++ b/worlds/timespinner/Locations.py @@ -240,9 +240,9 @@ def get_locations(world: Optional[MultiWorld], player: Optional[int]) -> Tuple[L LocationData('Castle Ramparts', 'Journal - Archer + Knight (Declaration of Independence)', 1337191), LocationData('Castle Keep', 'Journal - Under the Twins (Letter of Reference)', 1337192), LocationData('Castle Keep', 'Journal - Castle Loop Giantess (Political Advice)', 1337193), - LocationData('Royal towers (lower)', 'Journal - Aleana\'s Room (Diplomatic Missive)', 1337194, lambda state: state._timespinner_has_pink(world, player)), + LocationData('Royal towers (lower)', 'Journal - Aelana\'s Room (Diplomatic Missive)', 1337194, lambda state: state._timespinner_has_pink(world, player)), LocationData('Royal towers (upper)', 'Journal - Top Struggle Juggle Base (War of the Sisters)', 1337195), - LocationData('Royal towers (upper)', 'Journal - Aleana Boss (Stained Letter)', 1337196), + LocationData('Royal towers (upper)', 'Journal - Aelana Boss (Stained Letter)', 1337196), LocationData('Royal towers', 'Journal - Near Bottom Struggle Juggle (Mission Findings)', 1337197, lambda state: state._timespinner_has_doublejump_of_npc(world, player)), LocationData('Caves of Banishment (Maw)', 'Journal - Lower Left Maw Caves (Naivety)', 1337198) ) diff --git a/worlds/timespinner/__init__.py b/worlds/timespinner/__init__.py index b15ca3c8..9ed6b18c 100644 --- a/worlds/timespinner/__init__.py +++ b/worlds/timespinner/__init__.py @@ -19,7 +19,7 @@ class TimespinnerWorld(World): game = "Timespinner" topology_present = True remote_items = False - data_version = 7 + data_version = 8 item_name_to_id = {name: data.code for name, data in item_table.items()} location_name_to_id = {location.name: location.code for location in get_locations(None, None)}