From 65b1fd163b6e2485e61807825a119b714e7352f0 Mon Sep 17 00:00:00 2001 From: FossFanatic Date: Wed, 22 Feb 2023 13:05:18 +0000 Subject: [PATCH] Fix fatal typo This typo caused the game to crash, instead of spitting out an error message as it was supposed to. --- mods/ITEMS/mcl_itemframes/item_frames_API.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_itemframes/item_frames_API.lua b/mods/ITEMS/mcl_itemframes/item_frames_API.lua index 231482800..6c2217511 100644 --- a/mods/ITEMS/mcl_itemframes/item_frames_API.lua +++ b/mods/ITEMS/mcl_itemframes/item_frames_API.lua @@ -124,7 +124,7 @@ local function update_map_texture (self, staticdata) self.object:set_properties({ textures = { texture } }) end) if result ~= nil and result == false then - mintest.log("error", "[mcl_itemframes] Error setting up Map Item.") + minetest.log("error", "[mcl_itemframes] Error setting up Map Item.") end end