From 846b1d273d61d24972b04935991929f75786f613 Mon Sep 17 00:00:00 2001 From: MysticTempest Date: Thu, 11 Feb 2021 19:25:54 -0600 Subject: [PATCH] Fix the enchanting table book entity spawning multiple times as reported in issue #1008. --- mods/ITEMS/mcl_enchanting/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_enchanting/init.lua b/mods/ITEMS/mcl_enchanting/init.lua index ab3dddbd..be1b1872 100644 --- a/mods/ITEMS/mcl_enchanting/init.lua +++ b/mods/ITEMS/mcl_enchanting/init.lua @@ -349,7 +349,7 @@ minetest.register_lbm({ nodenames = {"mcl_enchanting:table"}, run_at_every_load = true, action = function(pos) - spawn_book_entity(pos) + spawn_book_entity(pos, true) end, })