player_api - fix compatibility code

get_animation does not return the data if called from outside without this change
Tento commit je obsažen v:
bell07
2022-02-03 09:10:53 +01:00
odevzdal GitHub
rodič e02e55fafd
revize 584a6a2102

Zobrazit soubor

@@ -218,6 +218,6 @@ for _, api_function in pairs({"get_animation", "set_animation", "set_model", "se
minetest.log("warning", api_function .. " called on offline player")
return
end
original_function(player, ...)
return original_function(player, ...)
end
end