Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 747 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 747 Bytes

dirtcraft

ContentDB ContentDB

This minetest mod provides recipes for crafting dirt by automatic means. This was specifically written with the intention to support the ethereal mod.

In order to avoid possible conflicts with the recipes produced, they are shaped with the "other_ingredient" being placed above good ole "default:dirt".

minetest.register_craft({
   output = dirt_name,
   recipe = {
      {other_ingredient},
      {"default:dirt"}
   }
})