1
0
Fork 0

Specify who joined the game with 0 hp in the warning log

This commit is contained in:
Eliy21 2023-12-05 05:45:14 +00:00
parent 3a11fcf67a
commit 339fb2d79e
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ minetest.register_on_joinplayer(function(player)
-- Respawn dead players on joining
if hp <= 0 then
player:respawn()
minetest.log("warning", "Player with 0 hp joined and has been forced to respawn")
minetest.log("warning", name .. " joined the game with 0 hp and has been forced to respawn")
end
end)