fix(candy-survival): restore ability to lift/carry roaming Tekton character

This commit is contained in:
2026-07-08 16:49:22 +08:00
parent 37e5d96b55
commit 5797197097
2 changed files with 0 additions and 13 deletions
-10
View File
@@ -2457,16 +2457,6 @@ func grab_tekton():
if not is_multiplayer_authority() or is_carrying_tekton or is_frozen or is_stop_frozen:
return
if LobbyManager.game_mode == "Candy Survival":
var gm = get_node_or_null("/root/Main/CandySurvivalManager")
if gm and gm.active:
var pid = get("peer_id") if "peer_id" in self else name.to_int()
if multiplayer.is_server():
gm.try_activate_ghost(pid)
else:
gm.rpc_id(1, "try_activate_ghost", pid)
return
# 1. Check for nearby carrier to snatch from
var carrier = _find_nearby_carrier()
if carrier: