forked from Mineclonia/Mineclonia
Remove double door recipes
This commit is contained in:
parent
50f44c660e
commit
8e80823544
|
@ -1,60 +0,0 @@
|
||||||
-- Trapdoor crafting
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = 'mcl_doors:trapdoor 2',
|
|
||||||
recipe = {
|
|
||||||
{'group:wood', 'group:wood', 'group:wood'},
|
|
||||||
{'group:wood', 'group:wood', 'group:wood'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = 'mcl_doors:iron_trapdoor',
|
|
||||||
recipe = {
|
|
||||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
|
||||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
-- Note: Door crafting is already done by door registration function
|
|
||||||
|
|
||||||
|
|
||||||
-- Fuel
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "mcl_doors:wooden_door",
|
|
||||||
burntime = 10,
|
|
||||||
})
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "mcl_doors:jungle_door",
|
|
||||||
burntime = 10,
|
|
||||||
})
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "mcl_doors:dark_oak_door",
|
|
||||||
burntime = 10,
|
|
||||||
})
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "mcl_doors:birch_door",
|
|
||||||
burntime = 10,
|
|
||||||
})
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "mcl_doors:acacia_door",
|
|
||||||
burntime = 10,
|
|
||||||
})
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "mcl_doors:spruce_door",
|
|
||||||
burntime = 10,
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
type = "fuel",
|
|
||||||
recipe = "mcl_doors:trapdoor",
|
|
||||||
burntime = 15,
|
|
||||||
})
|
|
|
@ -7,7 +7,6 @@ local path = minetest.get_modpath(this)
|
||||||
dofile(path.."/api_doors.lua") -- Doors API
|
dofile(path.."/api_doors.lua") -- Doors API
|
||||||
dofile(path.."/api_trapdoors.lua") -- Trapdoors API
|
dofile(path.."/api_trapdoors.lua") -- Trapdoors API
|
||||||
dofile(path.."/register.lua") -- Register builtin doors and trapdoors
|
dofile(path.."/register.lua") -- Register builtin doors and trapdoors
|
||||||
dofile(path.."/crafting.lua") -- Additional crafting recipes and fuel
|
|
||||||
dofile(path.."/alias.lua") -- Legacy aliases
|
dofile(path.."/alias.lua") -- Legacy aliases
|
||||||
|
|
||||||
-- Debug info
|
-- Debug info
|
||||||
|
|
Loading…
Reference in New Issue