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

@ -102,45 +102,45 @@ register_block("technic:carbon_steel_block", "technic:carbon_steel_ingot")
register_block("technic:stainless_steel_block", "technic:stainless_steel_ingot")
minetest.register_craft({
type = 'cooking',
type = "cooking",
recipe = "technic:zinc_lump",
output = "technic:zinc_ingot",
})
minetest.register_craft({
type = 'cooking',
type = "cooking",
recipe = "technic:chromium_lump",
output = "technic:chromium_ingot",
})
minetest.register_craft({
type = 'cooking',
type = "cooking",
recipe = "technic:uranium_lump",
output = "technic:uranium_ingot",
})
minetest.register_craft({
type = 'cooking',
type = "cooking",
recipe = "technic:lead_lump",
output = "technic:lead_ingot",
})
minetest.register_craft({
type = 'cooking',
type = "cooking",
recipe = minetest.registered_aliases["technic:wrought_iron_ingot"],
output = "technic:cast_iron_ingot",
})
minetest.register_craft({
type = 'cooking',
type = "cooking",
recipe = "technic:cast_iron_ingot",
cooktime = 2,
output = "technic:wrought_iron_ingot",
})
minetest.register_craft({
type = 'cooking',
type = "cooking",
recipe = "technic:carbon_steel_ingot",
cooktime = 2,
output = "technic:wrought_iron_ingot",

View File

@ -143,8 +143,8 @@ minetest.register_node(":technic:brass_block", {
minetest.register_craft({
output = 'technic:marble_bricks 4',
recipe = {
{ 'technic:marble', 'technic:marble' },
{ 'technic:marble', 'technic:marble' }
{ "technic:marble", "technic:marble" },
{ "technic:marble", "technic:marble" }
}
})