ShadowNinja
2013-07-05 2d168e5afc57f8da9973b67d0811cc33fed9e3a3
technic_chests/gold_chest.lua
@@ -19,18 +19,18 @@
minetest.register_craft({
   output = 'technic:gold_chest 1',
   recipe = {
      {'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
      {'moreores:gold_ingot','technic:silver_chest','moreores:gold_ingot'},
      {'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
      {'default:gold_ingot', 'default:gold_ingot',   'default:gold_ingot'},
      {'default:gold_ingot', 'technic:silver_chest', 'default:gold_ingot'},
      {'default:gold_ingot', 'default:gold_ingot',   'default:gold_ingot'},
   }
})
minetest.register_craft({
   output = 'technic:gold_locked_chest 1',
   recipe = {
      {'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
      {'moreores:gold_ingot','technic:silver_locked_chest','moreores:gold_ingot'},
      {'moreores:gold_ingot','moreores:gold_ingot','moreores:gold_ingot'},
      {'default:gold_ingot', 'default:gold_ingot',          'default:gold_ingot'},
      {'default:gold_ingot', 'technic:silver_locked_chest', 'default:gold_ingot'},
      {'default:gold_ingot', 'default:gold_ingot',          'default:gold_ingot'},
   }
})