summaryrefslogtreecommitdiff
path: root/unified_inventory/api.lua
diff options
context:
space:
mode:
Diffstat (limited to 'unified_inventory/api.lua')
-rw-r--r--unified_inventory/api.lua14
1 files changed, 13 insertions, 1 deletions
diff --git a/unified_inventory/api.lua b/unified_inventory/api.lua
index e386a76..c059c87 100644
--- a/unified_inventory/api.lua
+++ b/unified_inventory/api.lua
@@ -22,7 +22,15 @@ local homepos = {}
unified_inventory.home_filename = minetest.get_worldpath()..'/unified_inventory_home'
-- Create detached creative inventory after loading all mods
+-- Also 2nd attempt to disable default creative mod
minetest.after(0.01, function()
+
+ if creative_inventory then
+ creative_inventory.set_creative_formspec = function(player, start_i, pagenum)
+ return
+ end
+ end
+
unified_inventory.items_list = {}
for name,def in pairs(minetest.registered_items) do
if (not def.groups.not_in_creative_inventory or def.groups.not_in_creative_inventory == 0)
@@ -233,6 +241,9 @@ unified_inventory.get_formspec = function(player,page)
end
if craft.type == "extracting" then
method="Extracting"
+ end
+ if craft.type == "compressing" then
+ method="Compressing"
end
formspec = formspec.."label[6,3;"..method.."]"
end
@@ -565,7 +576,8 @@ unified_inventory.update_recipe = function(player, stack_name, alternate)
if craft.type == "cooking" or
craft.type == "fuel" or
craft.type == "grinding" or
- craft.type == "extracting" then
+ craft.type == "extracting" or
+ craft.type == "compressing" then
def=unified_inventory.find_item_def(craft["items"][1])
if def then
inv:set_stack("build", 1, def)