mirror of
https://github.com/random-geek/morelights.git
synced 2024-12-02 20:13:50 +01:00
Replace single quotes with double quotes
This commit is contained in:
parent
7ca9517cc6
commit
9ed260870b
@ -125,44 +125,44 @@ morelights.register_variants({
|
||||
minetest.register_craft({
|
||||
output = "morelights:bulb",
|
||||
recipe = {
|
||||
{'', 'default:glass', ''},
|
||||
{'', 'default:copper_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"", "default:glass", ""},
|
||||
{"", "default:copper_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights:pole_d 2",
|
||||
recipe = {
|
||||
{'dye:dark_grey', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:dark_grey", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights:pole_l 2",
|
||||
recipe = {
|
||||
{'dye:white', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:white", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights:chain_d",
|
||||
recipe = {
|
||||
{'dye:dark_grey', 'default:steel_ingot', ''},
|
||||
{'', '', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:dark_grey", "default:steel_ingot", ""},
|
||||
{"", "", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights:chain_l",
|
||||
recipe = {
|
||||
{'dye:white', 'default:steel_ingot', ''},
|
||||
{'', '', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:white", "default:steel_ingot", ""},
|
||||
{"", "", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
@ -81,42 +81,42 @@ minetest.register_node("morelights_extras:stairlight", {
|
||||
minetest.register_craft({
|
||||
output = "morelights_extras:f_block",
|
||||
recipe = {
|
||||
{'default:mese_crystal_fragment', 'default:steel_ingot', 'default:mese_crystal_fragment'},
|
||||
{morelights.glass, 'morelights:bulb', morelights.glass},
|
||||
{'default:mese_crystal_fragment', 'default:steel_ingot', 'default:mese_crystal_fragment'}
|
||||
{"default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment"},
|
||||
{morelights.glass, "morelights:bulb", morelights.glass},
|
||||
{"default:mese_crystal_fragment", "default:steel_ingot", "default:mese_crystal_fragment"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_extras:dirt_with_grass",
|
||||
recipe = {
|
||||
{'', morelights.glass, ''},
|
||||
{'', 'morelights:bulb', ''},
|
||||
{'default:grass_1', 'default:dirt', ''}
|
||||
{"", morelights.glass, ""},
|
||||
{"", "morelights:bulb", ""},
|
||||
{"default:grass_1", "default:dirt", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_extras:stone_block",
|
||||
recipe = {
|
||||
{'', morelights.glass, ''},
|
||||
{'', 'morelights:bulb', ''},
|
||||
{'', 'default:stone_block', ''}
|
||||
{"", morelights.glass, ""},
|
||||
{"", "morelights:bulb", ""},
|
||||
{"", "default:stone_block", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_extras:sandstone_block",
|
||||
recipe = {
|
||||
{'', morelights.glass, ''},
|
||||
{'', 'morelights:bulb', ''},
|
||||
{'', 'default:sandstone_block', ''}
|
||||
{"", morelights.glass, ""},
|
||||
{"", "morelights:bulb", ""},
|
||||
{"", "default:sandstone_block", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_extras:stairlight",
|
||||
recipe = {
|
||||
{'default:steel_ingot', 'morelights:bulb', 'default:steel_ingot'}
|
||||
{"default:steel_ingot", "morelights:bulb", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
|
@ -240,53 +240,53 @@ morelights.register_variants({
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:block",
|
||||
recipe = {
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{morelights.glass, 'morelights:bulb', morelights.glass},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"", "default:steel_ingot", ""},
|
||||
{morelights.glass, "morelights:bulb", morelights.glass},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:smallblock",
|
||||
recipe = {
|
||||
{'', morelights.glass, ''},
|
||||
{'default:steel_ingot', 'morelights:bulb', 'default:steel_ingot'}
|
||||
{"", morelights.glass, ""},
|
||||
{"default:steel_ingot", "morelights:bulb", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:post_d",
|
||||
recipe = {
|
||||
{'dye:dark_grey', 'default:steel_ingot', ''},
|
||||
{'', 'morelights:bulb', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:dark_grey", "default:steel_ingot", ""},
|
||||
{"", "morelights:bulb", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:post_l",
|
||||
recipe = {
|
||||
{'dye:white', 'default:steel_ingot', ''},
|
||||
{'', 'morelights:bulb', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:white", "default:steel_ingot", ""},
|
||||
{"", "morelights:bulb", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:streetpost_d 2",
|
||||
recipe = {
|
||||
{'dye:dark_grey', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:dark_grey", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:streetpost_l 2",
|
||||
recipe = {
|
||||
{'dye:white', 'default:steel_ingot', 'default:steel_ingot'},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:white", "default:steel_ingot", "default:steel_ingot"},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
@ -313,68 +313,68 @@ minetest.register_craft({
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:ceilinglight",
|
||||
recipe = {
|
||||
{'default:steel_ingot', 'morelights:bulb', 'default:steel_ingot'},
|
||||
{'', morelights.glass, ''},
|
||||
{"default:steel_ingot", "morelights:bulb", "default:steel_ingot"},
|
||||
{"", morelights.glass, ""},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:canlight_d",
|
||||
recipe = {
|
||||
{'dye:dark_grey', 'default:steel_ingot', ''},
|
||||
{'default:steel_ingot', 'morelights:bulb', 'default:steel_ingot'},
|
||||
{"dye:dark_grey", "default:steel_ingot", ""},
|
||||
{"default:steel_ingot", "morelights:bulb", "default:steel_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:canlight_l",
|
||||
recipe = {
|
||||
{'dye:white', 'default:steel_ingot', ''},
|
||||
{'default:steel_ingot', 'morelights:bulb', 'default:steel_ingot'},
|
||||
{"dye:white", "default:steel_ingot", ""},
|
||||
{"default:steel_ingot", "morelights:bulb", "default:steel_ingot"},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:walllamp",
|
||||
recipe = {
|
||||
{'dye:white', morelights.glass, ''},
|
||||
{morelights.glass, 'morelights:bulb', 'default:steel_ingot'},
|
||||
{'', 'dye:dark_grey', 'default:steel_ingot'}
|
||||
{"dye:white", morelights.glass, ""},
|
||||
{morelights.glass, "morelights:bulb", "default:steel_ingot"},
|
||||
{"", "dye:dark_grey", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:tablelamp_d",
|
||||
recipe = {
|
||||
{'wool:dark_grey', 'morelights:bulb', 'wool:dark_grey'},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"wool:dark_grey", "morelights:bulb", "wool:dark_grey"},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:tablelamp_l",
|
||||
recipe = {
|
||||
{'wool:white', 'morelights:bulb', 'wool:white'},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"wool:white", "morelights:bulb", "wool:white"},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:pathlight_d",
|
||||
recipe = {
|
||||
{'dye:dark_grey', 'morelights:bulb', ''},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:dark_grey", "morelights:bulb", ""},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_modern:pathlight_l",
|
||||
recipe = {
|
||||
{'dye:white', 'morelights:bulb', ''},
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:steel_ingot', ''}
|
||||
{"dye:white", "morelights:bulb", ""},
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:steel_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
@ -233,61 +233,61 @@ minetest.register_craft({
|
||||
minetest.register_craft({
|
||||
output = "morelights_vintage:chain_b",
|
||||
recipe = {
|
||||
{'', 'morelights_vintage:brass_ingot', ''},
|
||||
{'', '', ''},
|
||||
{'', 'morelights_vintage:brass_ingot', ''}
|
||||
{"", "morelights_vintage:brass_ingot", ""},
|
||||
{"", "", ""},
|
||||
{"", "morelights_vintage:brass_ingot", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_vintage:block",
|
||||
recipe = {
|
||||
{'', 'default:junglewood', ''},
|
||||
{morelights.glass, 'morelights:bulb', morelights.glass},
|
||||
{'', 'default:junglewood', ''}
|
||||
{"", "default:junglewood", ""},
|
||||
{morelights.glass, "morelights:bulb", morelights.glass},
|
||||
{"", "default:junglewood", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_vintage:smallblock",
|
||||
recipe = {
|
||||
{'', morelights.glass, ''},
|
||||
{'default:junglewood', 'morelights:bulb', 'default:junglewood'}
|
||||
{"", morelights.glass, ""},
|
||||
{"default:junglewood", "morelights:bulb", "default:junglewood"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_vintage:lantern_f",
|
||||
recipe = {
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{morelights.glass, 'morelights:bulb', morelights.glass},
|
||||
{'default:stick', 'default:steel_ingot', 'default:stick'}
|
||||
{"", "default:steel_ingot", ""},
|
||||
{morelights.glass, "morelights:bulb", morelights.glass},
|
||||
{"default:stick", "default:steel_ingot", "default:stick"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_vintage:hangingbulb",
|
||||
recipe = {
|
||||
{'', 'default:steel_ingot', ''},
|
||||
{'', 'default:copper_ingot', ''},
|
||||
{'', 'morelights:bulb', ''}
|
||||
{"", "default:steel_ingot", ""},
|
||||
{"", "default:copper_ingot", ""},
|
||||
{"", "morelights:bulb", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_vintage:oillamp",
|
||||
recipe = {
|
||||
{'', 'default:glass', ''},
|
||||
{'farming:cotton', 'morelights_vintage:brass_ingot', ''},
|
||||
{'', 'default:glass', ''}
|
||||
{"", "default:glass", ""},
|
||||
{"farming:cotton", "morelights_vintage:brass_ingot", ""},
|
||||
{"", "default:glass", ""}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "morelights_vintage:chandelier",
|
||||
recipe = {
|
||||
{'', 'morelights_vintage:brass_ingot', ''},
|
||||
{'morelights:bulb', 'morelights_vintage:brass_ingot', 'morelights:bulb'},
|
||||
{'default:steel_ingot', 'morelights_vintage:brass_ingot', 'default:steel_ingot'}
|
||||
{"", "morelights_vintage:brass_ingot", ""},
|
||||
{"morelights:bulb", "morelights_vintage:brass_ingot", "morelights:bulb"},
|
||||
{"default:steel_ingot", "morelights_vintage:brass_ingot", "default:steel_ingot"}
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user