I don't know why or how, but if I activate 3d_armor (latest CDB version) and I kill myself, even if I override my speed in on_respawn, this happens:
minetest.register_on_respawnplayer(function(player)
player:set_physics_override({ speed = 2.5 })
minetest.chat_send_all("on_respawn | Speed now = " .. player:get_physics_override().speed) -- 2.5
minetest.after(0.1, function()
minetest.chat_send_all("on_respawn | Speed 1 step after = " .. player:get_physics_override().speed) -- 1
end)
end)
3d_armor is enough, there's no need to use the rest of the modpack
I don't know why or how, but if I activate 3d_armor (latest CDB version) and I kill myself, even if I override my speed in
on_respawn, this happens:3d_armoris enough, there's no need to use the rest of the modpack