code tidy ' to "

master
TenPlus1 2019-08-05 08:57:49 +01:00
parent 5a0a5d53ca
commit a9b496f081
5 changed files with 17 additions and 17 deletions

View File

@ -173,20 +173,20 @@ minetest.register_tool("ethereal:axe_crystal", {
})
minetest.register_craft({
output = 'ethereal:axe_crystal',
output = "ethereal:axe_crystal",
recipe = {
{'ethereal:crystal_ingot', 'ethereal:crystal_ingot'},
{'ethereal:crystal_ingot', 'default:steel_ingot'},
{'', 'default:steel_ingot'},
{"ethereal:crystal_ingot", "ethereal:crystal_ingot"},
{"ethereal:crystal_ingot", "default:steel_ingot"},
{"", "default:steel_ingot"},
}
})
minetest.register_craft({
output = 'ethereal:axe_crystal',
output = "ethereal:axe_crystal",
recipe = {
{'ethereal:crystal_ingot', 'ethereal:crystal_ingot'},
{'default:steel_ingot', 'ethereal:crystal_ingot'},
{'default:steel_ingot', ''},
{"ethereal:crystal_ingot", "ethereal:crystal_ingot"},
{"default:steel_ingot", "ethereal:crystal_ingot"},
{"default:steel_ingot", ""},
}
})

View File

@ -4,7 +4,7 @@ local S = ethereal.intllib
-- Bamboo Flooring
minetest.register_node("ethereal:bamboo_floor", {
description = S("Bamboo Floor"),
drawtype = 'nodebox',
drawtype = "nodebox",
tiles = { "bamboo_floor.png" },
wield_image = "bamboo_floor.png",
inventory_image = "bamboo_floor.png",

View File

@ -37,7 +37,7 @@ minetest.register_craftitem("ethereal:sashimi", {
minetest.register_craft({
output = "ethereal:sashimi 2",
recipe = {
{'group:food_seaweed','group:food_fish_raw','group:food_seaweed'},
{"group:food_seaweed", "group:food_fish_raw", "group:food_seaweed"},
}
})

View File

@ -65,7 +65,7 @@ minetest.register_craftitem("ethereal:fire_dust", {
minetest.register_craft({
output = "ethereal:fire_dust 2",
recipe = {
{'ethereal:fire_flower'},
{"ethereal:fire_flower"},
}
})

View File

@ -13,10 +13,10 @@ minetest.register_node("ethereal:icebrick", {
})
minetest.register_craft({
output = 'ethereal:icebrick 4',
output = "ethereal:icebrick 4",
recipe = {
{'default:ice', 'default:ice'},
{'default:ice', 'default:ice'},
{"default:ice", "default:ice"},
{"default:ice", "default:ice"},
}
})
@ -36,10 +36,10 @@ minetest.register_node("ethereal:snowbrick", {
})
minetest.register_craft({
output = 'ethereal:snowbrick 4',
output = "ethereal:snowbrick 4",
recipe = {
{'default:snowblock', 'default:snowblock'},
{'default:snowblock', 'default:snowblock'},
{"default:snowblock", "default:snowblock"},
{"default:snowblock", "default:snowblock"},
}
})