beacon crafting recipie

This commit is contained in:
chmodsayshello 2022-07-24 12:45:30 +02:00 committed by cora
parent 74e3dfa0d7
commit a3adb3d80a
2 changed files with 11 additions and 2 deletions

View File

@ -220,4 +220,13 @@ minetest.register_globalstep(function(dtime)
end
timer = 0
end
end)
end)
minetest.register_craft({
output = "mcl_beacons:beacon",
recipe = {
{"mcl_core:glass", "mcl_core:glass", "mcl_core:glass"},
{"mcl_core:glass", "mcl_mobitems:nether_star", "mcl_core:glass"},
{"mcl_core:obsidian", "mcl_core:obsidian", "mcl_core:obsidian"}
}
})

View File

@ -1,2 +1,2 @@
author=chmodsayshello
depends=mcl_formspec, mcl_init, mcl_wip, mesecons_mvps, mcl_core, mcl_sounds, awards, mcl_achievements
depends=mcl_formspec, mcl_init, mcl_wip, mesecons_mvps, mcl_core, mcl_sounds, awards, mcl_achievements, mcl_mobitems