mirror of
				https://github.com/luanti-org/minetest_game.git
				synced 2025-11-04 01:05:49 +01:00 
			
		
		
		
	Default: Alter sand to sandstone recipe
Craft 4 default:sand to default:sandstone. Previously, 4 group:sand was craftable to sandstone and sandstone was craftable back into default:sand, allowing silver and desert sands to be converted into incorrect colour sandstone and yellow sand.
This commit is contained in:
		@@ -495,10 +495,10 @@ minetest.register_craft({
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
minetest.register_craft({
 | 
			
		||||
	output = 'default:sandstone',
 | 
			
		||||
	output = "default:sandstone",
 | 
			
		||||
	recipe = {
 | 
			
		||||
		{'group:sand', 'group:sand'},
 | 
			
		||||
		{'group:sand', 'group:sand'},
 | 
			
		||||
		{"default:sand", "default:sand"},
 | 
			
		||||
		{"default:sand", "default:sand"},
 | 
			
		||||
	}
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user