dokutan
2020-05-03 88f42539bb378ec25410967634c1e3ae274473a3
Fix error caused by locked chest recipes (#548)

5 files modified
20 ■■■■ changed files
technic_chests/copper_chest.lua 4 ●●●● patch | view | raw | blame | history
technic_chests/gold_chest.lua 4 ●●●● patch | view | raw | blame | history
technic_chests/iron_chest.lua 4 ●●●● patch | view | raw | blame | history
technic_chests/mithril_chest.lua 4 ●●●● patch | view | raw | blame | history
technic_chests/silver_chest.lua 4 ●●●● patch | view | raw | blame | history
technic_chests/copper_chest.lua
@@ -20,8 +20,8 @@
    output = 'technic:copper_locked_chest 1',
    type = "shapeless",
    recipe = {
        {'basic_materials:padlock'},
        {'technic:copper_chest'},
        'basic_materials:padlock',
        'technic:copper_chest',
    }
})
technic_chests/gold_chest.lua
@@ -31,8 +31,8 @@
    output = 'technic:gold_locked_chest',
    type = "shapeless",
    recipe = {
        {'basic_materials:padlock'},
        {'technic:gold_chest'},
        'basic_materials:padlock',
        'technic:gold_chest',
    }
})
technic_chests/iron_chest.lua
@@ -27,8 +27,8 @@
    output = 'technic:iron_locked_chest 1',
    type = "shapeless",
    recipe = {
        {'basic_materials:padlock'},
        {'technic:iron_chest'},
        'basic_materials:padlock',
        'technic:iron_chest',
    }
})
technic_chests/mithril_chest.lua
@@ -22,8 +22,8 @@
    output = 'technic:mithril_locked_chest 1',
    type = "shapeless",
    recipe = {
        {'basic_materials:padlock'},
        {'technic:mithril_chest'},
        'basic_materials:padlock',
        'technic:mithril_chest',
    }
})
technic_chests/silver_chest.lua
@@ -22,8 +22,8 @@
    output = 'technic:silver_locked_chest',
    type = "shapeless",
    recipe = {
        {'basic_materials:padlock'},
        {'technic:silver_chest'},
        'basic_materials:padlock',
        'technic:silver_chest',
    }
})