From 5e0adc29695f6c9cc70c8fe0962619c57d478cb7 Mon Sep 17 00:00:00 2001 From: Ada Ahmed Date: Sat, 28 Jun 2025 05:24:38 +0100 Subject: [PATCH] Fix animate_player crashing the game Resolves "attempt to call field 'animate_player' (a table value)" --- api/api.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/api/api.lua b/api/api.lua index daa4235..4fe0ed5 100644 --- a/api/api.lua +++ b/api/api.lua @@ -79,7 +79,10 @@ local function activate_nametag(self) }) end -animalia.animate_player = {} +local function animate_player_stub(arg1, arg2, arg3) +end + +animalia.animate_player = animate_player_stub if minetest.get_modpath("default") and minetest.get_modpath("player_api") then