From 3d52b679b014a92dad8e298c97095b11533ca0c1 Mon Sep 17 00:00:00 2001
From: Thomas Rudin <thomas@rudin.li>
Date: Fri, 16 Nov 2018 21:36:03 +0100
Subject: [PATCH] Quarry: Make use of fake digger from pipeworks (#453)

---
 technic/legacy.lua |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/technic/legacy.lua b/technic/legacy.lua
index f1ecf67..6a080e1 100644
--- a/technic/legacy.lua
+++ b/technic/legacy.lua
@@ -19,17 +19,23 @@
 	["technic:grinder_active"] = "technic:lv_grinder_active",
 	["technic:extractor"]        = "technic:lv_extractor",
 	["technic:extractor_active"] = "technic:lv_extractor_active",
+	["technic:compressor"]        = "technic:lv_compressor",
+	["technic:compressor_active"] = "technic:lv_compressor_active",
 	["technic:hv_battery_box"] = "technic:hv_battery_box0",
-	["technic:hv_cable"] = "technic:hv_cable0",
-	["technic:lv_cable"] = "technic:lv_cable0",
-	["technic:mv_cable"] = "technic:mv_cable0",
 	["technic:mv_battery_box"] = "technic:mv_battery_box0",
 	["technic:generator"]        = "technic:lv_generator",
 	["technic:generator_active"] = "technic:lv_generator_active",
 	["technic:iron_dust"] = "technic:wrought_iron_dust",
+	["technic:enriched_uranium"] = "technic:uranium35_ingot",
 }
 
 for old, new in pairs(technic.legacy_nodenames) do
 	minetest.register_alias(old, new)
 end
 
+for i = 0, 64 do
+	minetest.register_alias("technic:hv_cable"..i, "technic:hv_cable")
+	minetest.register_alias("technic:mv_cable"..i, "technic:mv_cable")
+	minetest.register_alias("technic:lv_cable"..i, "technic:lv_cable")
+end
+

--
Gitblit v1.8.0