forked from minetest/minetest_game
Use a local for the globalstep function
This commit is contained in:
parent
f665382017
commit
268a8844b6
|
@ -211,8 +211,11 @@ function player_api.globalstep()
|
|||
end
|
||||
|
||||
-- Mods can modify the globalstep by overriding player_api.globalstep
|
||||
|
||||
-- local for speed
|
||||
local player_api_globalstep = player_api.globalstep
|
||||
minetest.register_globalstep(function(...)
|
||||
player_api.globalstep(players, ...)
|
||||
player_api_globalstep(players, ...)
|
||||
end)
|
||||
|
||||
for _, api_function in pairs({"get_animation", "set_animation", "set_model", "set_textures"}) do
|
||||
|
|
Loading…
Reference in New Issue
Block a user