mirror of
				https://github.com/minetest-mods/mesecons.git
				synced 2025-11-04 04:55:26 +01:00 
			
		
		
		
	Add (shaped) craft recipe for vertical mesecons
* Craft them from three wires in a vertical row * Craft them back into mesecons by just putting one of them in the grid
This commit is contained in:
		@@ -201,3 +201,17 @@ minetest.register_node("mesecons_extrawires:vertical_bottom_off", {
 | 
			
		||||
	after_place_node	= vertical_update,
 | 
			
		||||
	after_dig_node 		= vertical_update
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
minetest.register_craft({
 | 
			
		||||
	output = "mesecons_extrawires:vertical_off 3",
 | 
			
		||||
	recipe = {
 | 
			
		||||
		{"mesecons:wire_00000000_off"},
 | 
			
		||||
		{"mesecons:wire_00000000_off"},
 | 
			
		||||
		{"mesecons:wire_00000000_off"}
 | 
			
		||||
	}
 | 
			
		||||
})
 | 
			
		||||
 | 
			
		||||
minetest.register_craft({
 | 
			
		||||
	output = "mesecons:wire_00000000_off",
 | 
			
		||||
	recipe = {{"mesecons_extrawires:vertical_off"}}
 | 
			
		||||
})
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user