diff options
Diffstat (limited to 'Archipelago/doorControl.gd')
-rw-r--r-- | Archipelago/doorControl.gd | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Archipelago/doorControl.gd b/Archipelago/doorControl.gd index 011b0e0..f64f9e2 100644 --- a/Archipelago/doorControl.gd +++ b/Archipelago/doorControl.gd | |||
@@ -2,9 +2,8 @@ extends "res://scripts/doorControl.gd" | |||
2 | 2 | ||
3 | 3 | ||
4 | func handle_correct(): | 4 | func handle_correct(): |
5 | # TODO: Right now we are just assuming that door shuffle is on. | ||
6 | var apclient = global.get_node("Archipelago") | 5 | var apclient = global.get_node("Archipelago") |
7 | if apclient.doorIsVanilla(self.get_parent().name + "/" + self.name): | 6 | if not apclient._door_shuffle or apclient.doorIsVanilla(self.get_parent().name + "/" + self.name): |
8 | .handle_correct() | 7 | .handle_correct() |
9 | 8 | ||
10 | 9 | ||