Create "antum_crafting" mod. Makes cotton from wool.

This commit is contained in:
AntumDeluge 2016-08-23 18:44:13 -07:00
parent 21d2477b51
commit c391216980
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,3 @@
farming
wool
craft_guide?

View File

@ -0,0 +1,7 @@
-- Create cotton from white wool
minetest.register_craft({
output = "farming:cotton 4",
type = "shapeless",
recipe = {"wool:white"},
})