mirror of
https://github.com/minetest-mods/technic.git
synced 2025-07-02 08:10:36 +02:00
Replace ' with "
Used regex: '([a-zA-Z:_1-9-]*)' Applied on *.lua
This commit is contained in:
@ -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" },
|
||||
}
|
||||
})
|
||||
|
||||
|
Reference in New Issue
Block a user