mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-27 05:13:48 +01:00
Hide repair recipes if disable_repair=1 is set
parent
68c373d2b8
commit
56ff8fbad5
@ -26,6 +26,7 @@ local get_recipes = function(query_item)
|
||||
if recipes == nil then
|
||||
recipes = {}
|
||||
end
|
||||
if minetest.get_item_group(query_item, "disable_repair") ~= 1 then
|
||||
table.insert(recipes, {
|
||||
type = "normal",
|
||||
width = 0,
|
||||
@ -36,6 +37,7 @@ local get_recipes = function(query_item)
|
||||
})
|
||||
end
|
||||
end
|
||||
end
|
||||
return recipes
|
||||
end
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user