This commit is contained in:
Rendo 2025-11-29 02:11:21 +05:00
commit 6422ffb13c
13 changed files with 142 additions and 5 deletions

View file

@ -0,0 +1,13 @@
extends Node3D
var plant: StringName
func _ready() -> void:
if multiplayer.is_server():
$Timer.timeout.connect(on_timeout)
func on_timeout():
if multiplayer.is_server() == false:
return
Session.kill_site(plant)