diff options
Diffstat (limited to 'Archipelago/mypainting.gd')
-rw-r--r-- | Archipelago/mypainting.gd | 9 |
1 files changed, 7 insertions, 2 deletions
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 | ||
21 | func _answer_correct(): | 21 | func _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 | ||
27 | func movePainting(): | 32 | func movePainting(): |