diff options
Diffstat (limited to 'technic_chests')
-rw-r--r-- | technic_chests/copper_chest.lua | 2 | ||||
-rw-r--r-- | technic_chests/depends.txt | 1 | ||||
-rw-r--r-- | technic_chests/gold_chest.lua | 2 | ||||
-rw-r--r-- | technic_chests/iron_chest.lua | 14 | ||||
-rw-r--r-- | technic_chests/mithril_chest.lua | 2 | ||||
-rw-r--r-- | technic_chests/silver_chest.lua | 2 |
6 files changed, 12 insertions, 11 deletions
diff --git a/technic_chests/copper_chest.lua b/technic_chests/copper_chest.lua index a2a5a28..21f0563 100644 --- a/technic_chests/copper_chest.lua +++ b/technic_chests/copper_chest.lua @@ -19,7 +19,7 @@ minetest.register_craft({ minetest.register_craft({ output = 'technic:copper_locked_chest 1', recipe = { - {'default:steel_ingot'}, + {'technic:wrought_iron_ingot'}, {'technic:copper_chest'}, } }) diff --git a/technic_chests/depends.txt b/technic_chests/depends.txt index 8009e56..fc0492e 100644 --- a/technic_chests/depends.txt +++ b/technic_chests/depends.txt @@ -1,5 +1,6 @@ default technic +technic_worldgen moreores pipeworks intllib? diff --git a/technic_chests/gold_chest.lua b/technic_chests/gold_chest.lua index d173fde..941834d 100644 --- a/technic_chests/gold_chest.lua +++ b/technic_chests/gold_chest.lua @@ -20,7 +20,7 @@ minetest.register_craft({ minetest.register_craft({ output = 'technic:gold_locked_chest', recipe = { - {'default:steel_ingot'}, + {'technic:wrought_iron_ingot'}, {'technic:gold_chest'}, } }) diff --git a/technic_chests/iron_chest.lua b/technic_chests/iron_chest.lua index c21fcfb..a1f5c63 100644 --- a/technic_chests/iron_chest.lua +++ b/technic_chests/iron_chest.lua @@ -2,25 +2,25 @@ minetest.register_craft({ output = 'technic:iron_chest 1', recipe = { - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, - {'default:steel_ingot','default:chest','default:steel_ingot'}, - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, + {'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'}, + {'technic:cast_iron_ingot','default:chest','technic:cast_iron_ingot'}, + {'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'}, } }) minetest.register_craft({ output = 'technic:iron_locked_chest 1', recipe = { - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, - {'default:steel_ingot','default:chest_locked','default:steel_ingot'}, - {'default:steel_ingot','default:steel_ingot','default:steel_ingot'}, + {'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'}, + {'technic:cast_iron_ingot','default:chest_locked','technic:cast_iron_ingot'}, + {'technic:cast_iron_ingot','technic:cast_iron_ingot','technic:cast_iron_ingot'}, } }) minetest.register_craft({ output = 'technic:iron_locked_chest 1', recipe = { - {'default:steel_ingot'}, + {'technic:wrought_iron_ingot'}, {'technic:iron_chest'}, } }) diff --git a/technic_chests/mithril_chest.lua b/technic_chests/mithril_chest.lua index b39fc9d..f5aa986 100644 --- a/technic_chests/mithril_chest.lua +++ b/technic_chests/mithril_chest.lua @@ -19,7 +19,7 @@ minetest.register_craft({ minetest.register_craft({ output = 'technic:mithril_locked_chest 1', recipe = { - {'default:steel_ingot'}, + {'technic:wrought_iron_ingot'}, {'technic:mithril_chest'}, } }) diff --git a/technic_chests/silver_chest.lua b/technic_chests/silver_chest.lua index 9c3453a..75b33f8 100644 --- a/technic_chests/silver_chest.lua +++ b/technic_chests/silver_chest.lua @@ -19,7 +19,7 @@ minetest.register_craft({ minetest.register_craft({ output = 'technic:silver_locked_chest', recipe = { - {'default:steel_ingot'}, + {'technic:wrought_iron_ingot'}, {'technic:silver_chest'}, } }) |