diff --git a/init.lua b/init.lua index 217acbc..d83238b 100644 --- a/init.lua +++ b/init.lua @@ -20,7 +20,6 @@ dofile(modpath .. "/config.lua") dofile(modpath .. "/circular_saw.lua") dofile(modpath .. "/stairsplus/init.lua") dofile(modpath .. "/nodes.lua") -dofile(modpath .. "/redefinitions.lua") dofile(modpath .. "/crafting.lua") dofile(modpath .. "/aliases.lua") diff --git a/redefinitions.lua b/redefinitions.lua deleted file mode 100644 index b05c2c0..0000000 --- a/redefinitions.lua +++ /dev/null @@ -1,52 +0,0 @@ ---[[ -More Blocks: redefinitions of default stuff - -Copyright © 2011-2019 Hugo Locurcio and contributors. -Licensed under the zlib license. See LICENSE.md for more information. ---]] - --- Redefinitions of some default crafting recipes: - -minetest.register_craft({ - output = "default:sign_wall 4", - recipe = { - {"default:wood", "default:wood", "default:wood"}, - {"default:wood", "default:wood", "default:wood"}, - {"", "default:stick", ""}, - } -}) - -minetest.register_craft({ - output = "default:ladder 4", - recipe = { - {"default:stick", "", "default:stick"}, - {"default:stick", "default:stick", "default:stick"}, - {"default:stick", "", "default:stick"}, - } -}) - -minetest.clear_craft({ - recipe = { - {"default:papyrus", "default:papyrus", "default:papyrus"} - } -}) -minetest.register_craft({ - output = "default:paper 4", - recipe = { - {"default:papyrus", "default:papyrus", "default:papyrus"}, - } -}) - -minetest.register_craft({ - output = "default:rail 24", - recipe = { - {"default:steel_ingot", "", "default:steel_ingot"}, - {"default:steel_ingot", "default:stick", "default:steel_ingot"}, - {"default:steel_ingot", "", "default:steel_ingot"}, - } -}) - -minetest.register_craft({ - type = "toolrepair", - additional_wear = -0.10, -- Tool repair buff (10% bonus instead of 2%). -})