summaryrefslogtreecommitdiff
path: root/technic/legacy.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:00:20 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:10:04 -0400
commit888b0ebfec8c2eff9015163549a7e47443cb8665 (patch)
tree915080159bfaa6ba6e226087c7ce0e8d5464b518 /technic/legacy.lua
parentda66780a569712c23ae4f2996cfb4608a9f9d69d (diff)
downloaddreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.gz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.bz2
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.tar.xz
dreambuilder_modpack-888b0ebfec8c2eff9015163549a7e47443cb8665.zip
"explode" all modpacks into their individual components
(you can't have a modpack buried inside a modpack)
Diffstat (limited to 'technic/legacy.lua')
-rw-r--r--technic/legacy.lua38
1 files changed, 38 insertions, 0 deletions
diff --git a/technic/legacy.lua b/technic/legacy.lua
new file mode 100644
index 0000000..8360a71
--- /dev/null
+++ b/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
+