mirror of
				https://github.com/minetest-mods/nether.git
				synced 2025-10-30 23:45:34 +01:00 
			
		
		
		
	Update nether-compressor-recipe.lua
clear craft recipe
This commit is contained in:
		| @@ -14,6 +14,36 @@ local recipes = { | ||||
| 	{"nether:brick_compressed 9",      "nether:nether_lump", 12} | ||||
|  | ||||
| } | ||||
| -- clear craft recipe | ||||
| minetest.clear_craft({ | ||||
| 	recipe = { | ||||
| 		{"nether:rack", "nether:rack"}, | ||||
| 		{"nether:rack", "nether:rack"}, | ||||
| 	} | ||||
| }) | ||||
|  | ||||
| minetest.clear_craft({ | ||||
| 	recipe = { | ||||
| 		{"nether:brick","nether:brick","nether:brick"}, | ||||
| 		{"nether:brick","nether:brick","nether:brick"}, | ||||
| 		{"nether:brick","nether:brick","nether:brick"}, | ||||
| 	} | ||||
| }) | ||||
|  | ||||
| minetest.clear_craft({ | ||||
| 	recipe = { | ||||
| 		{"nether:rack_deep", "nether:rack_deep"}, | ||||
| 		{"nether:rack_deep", "nether:rack_deep"} | ||||
| 	} | ||||
| }) | ||||
|  | ||||
| minetest.clear_craft({ | ||||
| 	recipe = { | ||||
| 		{"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"}, | ||||
| 		{"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"}, | ||||
| 		{"nether:brick_compressed","nether:brick_compressed","nether:brick_compressed"}, | ||||
| 	} | ||||
| }) | ||||
|  | ||||
| for _, data in pairs(recipes) do | ||||
| 	technic.register_compressor_recipe({input = {data[1]}, output = data[2], time = data[3]}) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user