From a8c097bcd914b5722a7a211e0382bf82c96d32f8 Mon Sep 17 00:00:00 2001
From: Tim <t4im@users.noreply.github.com>
Date: Fri, 30 Jan 2015 05:09:21 +0100
Subject: [PATCH] tweak sandstone/sand recipes to a more efficent compressing 2 sand -> sandstone and grinding sandstone -> 2 sand ratio; make sure the default recipes are defused

---
 technic/machines/register/compressor_recipes.lua |   12 +++++++++++-
 1 files changed, 11 insertions(+), 1 deletions(-)

diff --git a/technic/machines/register/compressor_recipes.lua b/technic/machines/register/compressor_recipes.lua
index 5c5fe91..bc65b25 100644
--- a/technic/machines/register/compressor_recipes.lua
+++ b/technic/machines/register/compressor_recipes.lua
@@ -10,14 +10,24 @@
 
 local recipes = {
 	{"default:snowblock",          "default:ice"},
+	{"default:sand 2",             "default:sandstone"},
 	{"default:desert_sand",        "default:desert_stone"},
 	{"technic:mixed_metal_ingot",  "technic:composite_plate"},
 	{"default:copper_ingot 5",     "technic:copper_plate"},
 	{"technic:coal_dust 4",        "technic:graphite"},
 	{"technic:carbon_cloth",       "technic:carbon_plate"},
-	{"technic:enriched_uranium 4", "technic:uranium_fuel"},
+	{"technic:uranium35_ingot 5",  "technic:uranium_fuel"},
 }
 
+-- defuse the default sandstone recipe, since we have the compressor to take over in a more realistic manner
+minetest.register_craft({
+	output = "default:sand 4",
+	recipe = {
+		{'group:sand', 'group:sand'},
+                {'group:sand', 'group:sand'}
+	},
+})
+
 for _, data in pairs(recipes) do
 	technic.register_compressor_recipe({input = {data[1]}, output = data[2]})
 end

--
Gitblit v1.8.0