forked from VoxeLibre/VoxeLibre
Respawn dead players when they login so they don't get stuck without the death formspec
This commit is contained in:
parent
4cf865a36c
commit
22952fd591
|
@ -657,6 +657,7 @@ end)
|
||||||
-- set to blank on join (for 3rd party mods)
|
-- set to blank on join (for 3rd party mods)
|
||||||
minetest.register_on_joinplayer(function(player)
|
minetest.register_on_joinplayer(function(player)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
|
local hp = player:get_hp()
|
||||||
|
|
||||||
mcl_playerplus_internal[name] = {
|
mcl_playerplus_internal[name] = {
|
||||||
lastPos = nil,
|
lastPos = nil,
|
||||||
|
@ -671,6 +672,10 @@ minetest.register_on_joinplayer(function(player)
|
||||||
player:set_bone_position("Arm_Right_Pitch_Control", vector.new(-3, 5.785, 0))
|
player:set_bone_position("Arm_Right_Pitch_Control", vector.new(-3, 5.785, 0))
|
||||||
player:set_bone_position("Arm_Left_Pitch_Control", vector.new(3, 5.785, 0))
|
player:set_bone_position("Arm_Left_Pitch_Control", vector.new(3, 5.785, 0))
|
||||||
player:set_bone_position("Body_Control", vector.new(0, 6.75, 0))
|
player:set_bone_position("Body_Control", vector.new(0, 6.75, 0))
|
||||||
|
-- Respawn dead players on joining
|
||||||
|
if hp <= 0 then
|
||||||
|
player:respawn()
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
-- clear when player leaves
|
-- clear when player leaves
|
||||||
|
|
Loading…
Reference in New Issue