From e7336896929d5426ba00683981ad55b671b15968 Mon Sep 17 00:00:00 2001 From: Jordan Irwin Date: Sat, 8 May 2021 15:13:22 -0700 Subject: [PATCH] Add debug message when spawned --- spawn.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spawn.lua b/spawn.lua index 5f1dc01..099c59d 100644 --- a/spawn.lua +++ b/spawn.lua @@ -50,6 +50,11 @@ core.register_abm({ .. tostring(math.floor(pos.x)) .. "," .. tostring(math.floor(pos.y)) .. "," .. tostring(math.floor(pos.z))) + else + sneeker.log("debug", "Spawned at: " + .. tostring(math.floor(pos.x)) + .. "," .. tostring(math.floor(pos.y)) + .. "," .. tostring(math.floor(pos.z))) end end })