Merge pull request #284 from KirbyKid256/pulls/coin-heaven-warp-fix

Coin Heaven Warps Player to The Right Spot
This commit is contained in:
Joe H
2025-09-20 17:01:08 +01:00
committed by GitHub

View File

@@ -5,8 +5,9 @@ extends Node2D
func _ready() -> void:
Level.vine_warp_level = heaven_scene
if Level.in_vine_level:
Level.in_vine_level = false
if Level.in_vine_level and PipeArea.exiting_pipe_id == -1:
if PipeArea.exiting_pipe_id == -1:
for i in get_tree().get_nodes_in_group("Players"):
i.global_position = global_position
i.reset_physics_interpolation()