1
0
鏡像自 https://github.com/Uberi/Minetest-WorldEdit.git 已同步 2025-09-17 19:35:19 +02:00

remove assert if sfinv disabled

The mod should not crash the game if sfinv is loaded but disabled
此提交包含在:
bell07
2017-11-02 16:41:00 +01:00
提交者 GitHub
父節點 7b1deb1b61
當前提交 3056465701

查看文件

@@ -134,8 +134,7 @@ elseif rawget(_G, "inventory_plus") then --inventory++ installed
inventory_plus.set_inventory_formspec(player, get_formspec(name, page))
end
end
elseif rawget(_G, "sfinv") then --sfinv installed (part of minetest_game since 0.4.15)
assert(sfinv.enabled)
elseif rawget(_G, "sfinv") and sfinv.enabled then --sfinv installed (part of minetest_game since 0.4.15) and not disabled
local orig_get = sfinv.pages["sfinv:crafting"].get
sfinv.override_page("sfinv:crafting", {
get = function(self, player, context)