summaryrefslogtreecommitdiff
path: root/technic/technic/legacy.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic/technic/legacy.lua')
-rw-r--r--technic/technic/legacy.lua38
1 files changed, 38 insertions, 0 deletions
diff --git a/technic/technic/legacy.lua b/technic/technic/legacy.lua
new file mode 100644
index 0000000..8360a71
--- /dev/null
+++ b/technic/technic/legacy.lua
@@ -0,0 +1,38 @@
+
+-- Aliases to convert from legacy node/item names
+
+technic.legacy_nodenames = {
+ ["technic:alloy_furnace"] = "technic:lv_alloy_furnace",
+ ["technic:alloy_furnace_active"] = "technic:lv_alloy_furnace_active",
+ ["technic:battery_box"] = "technic:lv_battery_box0",
+ ["technic:battery_box1"] = "technic:lv_battery_box1",
+ ["technic:battery_box2"] = "technic:lv_battery_box2",
+ ["technic:battery_box3"] = "technic:lv_battery_box3",
+ ["technic:battery_box4"] = "technic:lv_battery_box4",
+ ["technic:battery_box5"] = "technic:lv_battery_box5",
+ ["technic:battery_box6"] = "technic:lv_battery_box6",
+ ["technic:battery_box7"] = "technic:lv_battery_box7",
+ ["technic:battery_box8"] = "technic:lv_battery_box8",
+ ["technic:electric_furnace"] = "technic:lv_electric_furnace",
+ ["technic:electric_furnace_active"] = "technic:lv_electric_furnace_active",
+ ["technic:grinder"] = "technic:lv_grinder",
+ ["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
+