Update init.lua

This commit is contained in:
Nicolas 2024-02-06 11:20:26 +01:00 committed by GitHub
parent 994e7ebfee
commit 68d3df4281
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -286,6 +286,9 @@ minetest.register_on_dieplayer(function(player)
pos.y = pos.y -- Réglage de la coordonnée Y (elle semble inchangée)
-- rendre les cordonner en entier
pos.x = math.floor(pos.x)
pos.y = math.floor(pos.y)
pos.z = math.floor(pos.z)
-- Envoyer un message au joueur indiquant ses coordonnées après la mort