Replace ' with "

Used regex: '([a-zA-Z:_1-9-]*)'
Applied on *.lua
This commit is contained in:
Thomas--S
2017-03-29 16:59:00 +02:00
parent 7851a45f88
commit 4b66e9f447
56 changed files with 353 additions and 353 deletions

View File

@ -26,43 +26,43 @@ end
minetest.register_craft({
output = 'technic:rebar 6',
recipe = {
{ '', '', steel_ingot },
{ '', steel_ingot, '' },
{ steel_ingot, '', '' },
{ "", "", steel_ingot },
{ "", steel_ingot, "" },
{ steel_ingot, "", "" },
}
})
minetest.register_craft({
output = 'technic:concrete 5',
recipe = {
{ 'default:stone', 'technic:rebar', 'default:stone' },
{ 'technic:rebar', 'default:stone', 'technic:rebar' },
{ 'default:stone', 'technic:rebar', 'default:stone' },
{ "default:stone", "technic:rebar", "default:stone" },
{ "technic:rebar", "default:stone", "technic:rebar" },
{ "default:stone", "technic:rebar", "default:stone" },
}
})
minetest.register_craft({
output = 'technic:concrete_post_platform 6',
recipe = {
{ 'technic:concrete', 'technic:concrete_post', 'technic:concrete' },
{ "technic:concrete", "technic:concrete_post", "technic:concrete" },
}
})
minetest.register_craft({
output = 'technic:concrete_post 12',
recipe = {
{ 'default:stone', 'technic:rebar', 'default:stone' },
{ 'default:stone', 'technic:rebar', 'default:stone' },
{ 'default:stone', 'technic:rebar', 'default:stone' },
{ "default:stone", "technic:rebar", "default:stone" },
{ "default:stone", "technic:rebar", "default:stone" },
{ "default:stone", "technic:rebar", "default:stone" },
}
})
minetest.register_craft({
output = 'technic:blast_resistant_concrete 5',
recipe = {
{ 'technic:concrete', 'technic:composite_plate', 'technic:concrete' },
{ 'technic:composite_plate', 'technic:concrete', 'technic:composite_plate' },
{ 'technic:concrete', 'technic:composite_plate', 'technic:concrete' },
{ "technic:concrete", "technic:composite_plate", "technic:concrete" },
{ "technic:composite_plate", "technic:concrete", "technic:composite_plate" },
{ "technic:concrete", "technic:composite_plate", "technic:concrete" },
}
})