Ajout des mods nalc_bakedclay, nalc_nether et nalc_diet.

This commit is contained in:
sys4-fr
2018-09-30 12:07:04 +02:00
parent 9c26201bfc
commit e333fde4a8
6 changed files with 142 additions and 0 deletions

View File

@ -0,0 +1,2 @@
bakedclay
unifieddyes

12
nalc_bakedclay/init.lua Normal file
View File

@ -0,0 +1,12 @@
-- If bakedclay loaded then remove "dye:grey 3" craft recipe
-- in order to avoid unifieddyes conflict
minetest.clear_craft({output = "dye:grey"})
minetest.register_craft(
{
type = "shapeless",
output = "dye:grey 2",
recipe = {"dye:black", "dye:white"}
})
minetest.log("action", "[nalc_bakedclay] loaded.")