From 0ef9d820818c6768060eca0a692c87d29bea8f95 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Fri, 28 Apr 2023 11:21:08 -0400 Subject: Progressive Art Gallery and Hallway Room Also, Art Gallery is now changed a little in doors mode. The backroom is always available so that you have access to the previous floors at all times. The paintings in the backroom do not appear until you have the floor unlocked. ORDER is also blocked off until you get the fifth floor. --- Archipelago/painting_scenery.gd | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Archipelago/painting_scenery.gd (limited to 'Archipelago/painting_scenery.gd') diff --git a/Archipelago/painting_scenery.gd b/Archipelago/painting_scenery.gd new file mode 100644 index 0000000..f49d602 --- /dev/null +++ b/Archipelago/painting_scenery.gd @@ -0,0 +1,11 @@ +extends "res://scripts/painting_scenery.gd" + + +func _answer_correct(): + var apclient = global.get_node("Archipelago") + if not apclient._door_shuffle or apclient.paintingIsVanilla(self.name): + ._answer_correct() + + +func movePainting(): + ._answer_correct() -- cgit 1.4.1