Fix error caused by locked chest recipes (#548)

Bu işleme şunda yer alıyor:
dokutan 2020-05-03 19:53:43 +02:00 işlemeyi yapan: GitHub
ebeveyn b2a124dd83
işleme 88f42539bb
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
5 değiştirilmiş dosya ile 10 ekleme ve 10 silme

Dosyayı Görüntüle

@ -20,8 +20,8 @@ minetest.register_craft({
output = 'technic:copper_locked_chest 1',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:copper_chest'},
'basic_materials:padlock',
'technic:copper_chest',
}
})

Dosyayı Görüntüle

@ -31,8 +31,8 @@ minetest.register_craft({
output = 'technic:gold_locked_chest',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:gold_chest'},
'basic_materials:padlock',
'technic:gold_chest',
}
})

Dosyayı Görüntüle

@ -27,8 +27,8 @@ minetest.register_craft({
output = 'technic:iron_locked_chest 1',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:iron_chest'},
'basic_materials:padlock',
'technic:iron_chest',
}
})

Dosyayı Görüntüle

@ -22,8 +22,8 @@ minetest.register_craft({
output = 'technic:mithril_locked_chest 1',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:mithril_chest'},
'basic_materials:padlock',
'technic:mithril_chest',
}
})

Dosyayı Görüntüle

@ -22,8 +22,8 @@ minetest.register_craft({
output = 'technic:silver_locked_chest',
type = "shapeless",
recipe = {
{'basic_materials:padlock'},
{'technic:silver_chest'},
'basic_materials:padlock',
'technic:silver_chest',
}
})