Update 'init.lua'

This commit is contained in:
The4spaceconstants 2022-10-07 11:54:21 +02:00
parent fb347839a4
commit 3eee716f55
1 changed files with 2 additions and 22 deletions

View File

@ -1,5 +1,4 @@
--WIP
--[[
if minetest.get_modpath("unified_inventory") and unified_inventory.register_craft_type then
unified_inventory.register_craft_type("Mob Killing", {
description = "Dropped from",
@ -8,23 +7,4 @@ if minetest.get_modpath("unified_inventory") and unified_inventory.register_craf
height = 1,
uses_crafting_grid = false,
})
end
]]
minetest.register_craft{
type = "shapeless"
output = "bonemeal:fertiliser 8"
recipe = {"group:bone", "group:bone", "group:tree", "group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves", "group:leaves"}
}
minetest.register_craft{
type = "shapeless"
output = "bonemeal:fertiliser 2"
recipe = {"group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "group:seed", "bonemeal:bonemeal"}
}
minetest.register_craft{
type = "shapeless",
output = "default:lava_source",
recipe = {"bucket:bucket_lava"}
}
end