From dd5657c9ea0c7ac6c9347ad6be790b1b550c1156 Mon Sep 17 00:00:00 2001 From: a-bad-dev <244852891+a-bad-dev@users.noreply.github.com> Date: Tue, 9 Dec 2025 00:07:33 -0400 Subject: [PATCH] Teleport the player to the map spawn on start --- mods/main/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/main/init.lua b/mods/main/init.lua index 57adebd..bf97196 100644 --- a/mods/main/init.lua +++ b/mods/main/init.lua @@ -183,7 +183,7 @@ core.register_chatcommand("start", { player:set_nametag_attributes({color = {a = 0}}) player:set_hp(20) - + player:set_pos({x=map_data.spawn_x, y=map_data.spawn_y, z=map_data.spawn_z}) player:set_properties({ pointable = true, -- allow players to be killable after the match starts })