This commit is contained in:
f3d0ss 2023-01-20 22:03:12 -05:00 committed by GitHub
commit 4d2caaf0f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -109,7 +109,7 @@ if minetest.get_modpath("default")
and minetest.get_modpath("player_api") then and minetest.get_modpath("player_api") then
animate_player = player_api.set_animation animate_player = player_api.set_animation
elseif minetest.get_modpath("mcl_player") then elseif minetest.get_modpath("mcl_player") then
animate_player = mcl_player.set_animation animate_player = mcl_player.player_set_animation
end end
----------------------- -----------------------

View file

@ -74,7 +74,7 @@ if minetest.get_modpath("default")
and minetest.get_modpath("player_api") then and minetest.get_modpath("player_api") then
animate_player = player_api.set_animation animate_player = player_api.set_animation
elseif minetest.get_modpath("mcl_player") then elseif minetest.get_modpath("mcl_player") then
animate_player = mcl_player.set_animation animate_player = mcl_player.player_set_animation
end end
local get_collision = creatura.get_collision local get_collision = creatura.get_collision