We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
on_respawn
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
3d_armor
The text was updated successfully, but these errors were encountered:
Cannot reproduce. (changed minetest.chat_send_all to print)
minetest.chat_send_all
print
2024-05-07 15:25:41: ACTION[Server]: singleplayer dies at (-28,4,39). No bones placed 2024-05-07 15:25:43: ACTION[Server]: Moving singleplayer to static spawnpoint at (-32,4,47) on_respawn | Speed now = 2.5 2024-05-07 15:25:43: ACTION[Server]: singleplayer respawns at (-32,4,47) on_respawn | Speed 1 step after = 2.5
Test setup:
/killme
Sorry, something went wrong.
No branches or pull requests
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_armor
is enough, there's no need to use the rest of the modpackThe text was updated successfully, but these errors were encountered: