Add debug message when spawned

This commit is contained in:
Jordan Irwin 2021-05-08 15:13:22 -07:00
parent 0cb069edeb
commit e733689692

@ -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
})