mirror of
				https://github.com/luanti-org/minetest_game.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	Stairs: Stair recipe returns 8 stairs not 6
Make it consistent with the slab recipe which conserves volume
This commit is contained in:
		@@ -89,7 +89,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
 | 
			
		||||
 | 
			
		||||
	if recipeitem then
 | 
			
		||||
		minetest.register_craft({
 | 
			
		||||
			output = 'stairs:stair_' .. subname .. ' 6',
 | 
			
		||||
			output = 'stairs:stair_' .. subname .. ' 8',
 | 
			
		||||
			recipe = {
 | 
			
		||||
				{recipeitem, "", ""},
 | 
			
		||||
				{recipeitem, recipeitem, ""},
 | 
			
		||||
@@ -99,7 +99,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
 | 
			
		||||
 | 
			
		||||
		-- Flipped recipe for the silly minecrafters
 | 
			
		||||
		minetest.register_craft({
 | 
			
		||||
			output = 'stairs:stair_' .. subname .. ' 6',
 | 
			
		||||
			output = 'stairs:stair_' .. subname .. ' 8',
 | 
			
		||||
			recipe = {
 | 
			
		||||
				{"", "", recipeitem},
 | 
			
		||||
				{"", recipeitem, recipeitem},
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user