player_api - fix compatibility code

This commit is contained in:
Lars Müller 2022-02-03 09:15:14 +01:00 committed by GitHub
commit a840ac0a4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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