mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2025-06-28 14:16:06 +02:00
Commented a few unknown recipes and added warning message
- Added a warning message from unified_inventory when it detects a recipe involving an unknown item. Can be activated in minetest.conf with "show_unknown_craftrecipes" setting. - Commented a few of our unknown craft recipes
This commit is contained in:
@ -1063,13 +1063,13 @@ minetest.register_craft( {
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
--[[minetest.register_craft( {
|
||||
output = "signs:sign_wall_blue 2",
|
||||
recipe = {
|
||||
{ "dye:blue", "dye:white", "dye:blue" },
|
||||
{ "steel:sheet_metal", "steel:sheet_metal", "steel:sheet_metal" }
|
||||
},
|
||||
})
|
||||
})]] -- Disabled. steel:sheet_metal is unknown //MFF(Mg|08/04/15)
|
||||
|
||||
minetest.register_craft( {
|
||||
output = "signs:sign_wall_brown 4",
|
||||
@ -1079,13 +1079,13 @@ minetest.register_craft( {
|
||||
},
|
||||
})
|
||||
|
||||
minetest.register_craft( {
|
||||
--[[minetest.register_craft( {
|
||||
output = "signs:sign_wall_brown 2",
|
||||
recipe = {
|
||||
{ "dye:brown", "dye:white", "dye:brown" },
|
||||
{ "steel:sheet_metal", "steel:sheet_metal", "steel:sheet_metal" }
|
||||
},
|
||||
})
|
||||
})]] -- Disabled. steel:sheet_metal is unknown //MFF(Mg|08/04/15)
|
||||
|
||||
if minetest.setting_get("log_mods") then
|
||||
minetest.log("action", S("signs loaded"))
|
||||
|
Reference in New Issue
Block a user