about summary refs log tree commit diff stats
path: root/Archipelago/teleport.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Archipelago/teleport.gd')
-rw-r--r--Archipelago/teleport.gd19
1 files changed, 11 insertions, 8 deletions
diff --git a/Archipelago/teleport.gd b/Archipelago/teleport.gd index d322722..532f081 100644 --- a/Archipelago/teleport.gd +++ b/Archipelago/teleport.gd
@@ -5,20 +5,23 @@ var _unlocked = true
5 5
6func _ready(): 6func _ready():
7 var apclient = global.get_node("Archipelago") 7 var apclient = global.get_node("Archipelago")
8 if apclient._door_shuffle and !apclient.warpIsVanilla(self.get_parent().name + "/" + self.name): 8 if self.get_parent().name == "Teleporter Warps":
9 if self.get_parent().name == "Teleporter Warps": 9 if apclient._sunwarp_access != apclient.kSUNWARP_ACCESS_NORMAL:
10 if apclient._sunwarp_access != apclient.kSUNWARP_ACCESS_NORMAL:
11 _unlocked = false
12 else:
13 _unlocked = false 10 _unlocked = false
11 elif apclient._door_shuffle and !apclient.warpIsVanilla(self.get_parent().name + "/" + self.name):
12 _unlocked = false
14 13
15 ._ready()
16 14
17 15func _body_entered(body):
18func _body_entered(var body):
19 if _unlocked: 16 if _unlocked:
20 ._body_entered(body) 17 ._body_entered(body)
21 18
19 if body.is_in_group("player"):
20 var apclient = global.get_node("Archipelago")
21 if !apclient._pilgrimage_enabled:
22 global.sunwarp = 1
23 body.get_node("pivot/camera/sunwarp_background").visible = false
24
22 25
23func unlock_warp(): 26func unlock_warp():
24 _unlocked = true 27 _unlocked = true