forked from minetest-mods/moreblocks
		
	Merge pull request #14 from beyondlimits/master
Add circular crafting rule to 3-microblock stairs
This commit is contained in:
		@@ -110,6 +110,12 @@ function stairsplus:register_micro(modname, subname, recipeitem, fields)
 | 
			
		||||
		recipe = {modname .. ":slab_" .. subname},
 | 
			
		||||
	})
 | 
			
		||||
	
 | 
			
		||||
	minetest.register_craft({
 | 
			
		||||
		type = "shapeless",
 | 
			
		||||
		output = modname .. ":micro_" .. subname .. " 3",
 | 
			
		||||
		recipe = {modname .. ":stair_" .. subname .. "_right_half"},
 | 
			
		||||
	})
 | 
			
		||||
	
 | 
			
		||||
	minetest.register_craft({
 | 
			
		||||
		type = "shapeless",
 | 
			
		||||
		output = modname .. ":micro_" .. subname .. " 2",
 | 
			
		||||
 
 | 
			
		||||
@@ -179,12 +179,6 @@ function stairsplus:register_stair(modname, subname, recipeitem, fields)
 | 
			
		||||
		recipe = {modname .. ":stair_" .. subname .. "_half"},
 | 
			
		||||
	})
 | 
			
		||||
	
 | 
			
		||||
	minetest.register_craft({
 | 
			
		||||
		type = "shapeless",
 | 
			
		||||
		output = modname .. ":stair_" .. subname .. "_half",
 | 
			
		||||
		recipe = {modname .. ":stair_" .. subname .. "_right_half"},
 | 
			
		||||
	})
 | 
			
		||||
	
 | 
			
		||||
	minetest.register_craft({
 | 
			
		||||
		type = "shapeless",
 | 
			
		||||
		output = modname .. ":stair_" .. subname,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user