about summary refs log tree commit diff stats
path: root/Archipelago
diff options
context:
space:
mode:
Diffstat (limited to 'Archipelago')
-rw-r--r--Archipelago/client.gd3
-rw-r--r--Archipelago/mypainting.gd9
2 files changed, 10 insertions, 2 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index db79e15..68528f6 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd
@@ -130,6 +130,7 @@ var _mastery_achievements = 21
130var _level_2_requirement = 223 130var _level_2_requirement = 223
131var _location_classification_bit = 0 131var _location_classification_bit = 0
132var _early_color_hallways = false 132var _early_color_hallways = false
133var _pilgrimage_enabled = false
133var _slot_seed = 0 134var _slot_seed = 0
134 135
135var _map_loaded = false 136var _map_loaded = false
@@ -310,6 +311,8 @@ func _on_data():
310 _location_classification_bit = kCLASSIFICATION_LOCAL_INSANITY 311 _location_classification_bit = kCLASSIFICATION_LOCAL_INSANITY
311 if _slot_data.has("early_color_hallways"): 312 if _slot_data.has("early_color_hallways"):
312 _early_color_hallways = _slot_data["early_color_hallways"] 313 _early_color_hallways = _slot_data["early_color_hallways"]
314 if _slot_data.has("enable_pilgrimage"):
315 _pilgrimage_enabled = _slot_data["enable_pilgrimage"]
313 316
314 _puzzle_skips = 0 317 _puzzle_skips = 0
315 318
diff --git a/Archipelago/mypainting.gd b/Archipelago/mypainting.gd index 5e9c703..1420c03 100644 --- a/Archipelago/mypainting.gd +++ b/Archipelago/mypainting.gd
@@ -20,8 +20,13 @@ func _ready():
20 20
21func _answer_correct(): 21func _answer_correct():
22 var apclient = global.get_node("Archipelago") 22 var apclient = global.get_node("Archipelago")
23 if not apclient._door_shuffle or apclient.paintingIsVanilla(self.get_parent().name): 23 if self.get_parent().name == "pilgrim_painting2":
24 movePainting() 24 # When pilgrimage is enabled, the HOT CRUST panel should actually move the sun painting.
25 if apclient._pilgrimage_enabled:
26 movePainting()
27 else:
28 if not apclient._door_shuffle or apclient.paintingIsVanilla(self.get_parent().name):
29 movePainting()
25 30
26 31
27func movePainting(): 32func movePainting():