1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2026-01-13 04:45:32 +01:00

remove biome lib usage from ferns (#72)

* chuck all worthless settings stuff, remove disabled code

* remove pre 5x dead code

* translate ferns.lua

* translate horsetail.lua

* chuck dead crafting reciepes

* remove biome lib from treefern.lua

* remove biome lib from gianttreefern.lua
This commit is contained in:
wsor4035
2026-01-10 17:00:02 -05:00
committed by GitHub
parent a8c2dfd012
commit 52825ff02b
8 changed files with 162 additions and 466 deletions

View File

@@ -79,31 +79,3 @@ minetest.register_craft({
output = "dye:green",
recipe = {"group:horsetail"},
})
-----------------------------------------------------------------------------------------------
-- GLUE WOODEN TOOLS with RESIN & POLISH them with HORSETAIL (planned)
-----------------------------------------------------------------------------------------------
--[[minetest.register_craft({
type = "shapeless",
output = "default:pick_wood",
recipe = {"default:pick_wood","group:horsetail","farming:string","default:stick"},
})
minetest.register_craft({
type = "shapeless",
output = "default:shovel_wood",
recipe = {"default:shovel_wood","group:horsetail","farming:string","default:stick"},
})
minetest.register_craft({
type = "shapeless",
output = "default:axe_wood",
recipe = {"default:axe_wood","group:horsetail","farming:string","default:stick"},
})
minetest.register_craft({
type = "shapeless",
output = "default:sword_wood",
recipe = {"default:sword_wood","group:horsetail","farming:string","default:stick"},
})
minetest.register_craft({
type = "shapeless",
output = "farming:hoe_wood",
recipe = {"farming:hoe_wood","group:horsetail","farming:string","default:stick"},
})]]