Navigation Menu

Skip to content

Commit

Permalink
Various mods: Use " " instead of ' ' for item names
Browse files Browse the repository at this point in the history
  • Loading branch information
TumeniNodes authored and paramat committed Aug 1, 2019
1 parent a5bde8e commit 7f83012
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 30 deletions.
6 changes: 3 additions & 3 deletions mods/bucket/init.lua
Expand Up @@ -6,10 +6,10 @@ minetest.register_alias("bucket_water", "bucket:bucket_water")
minetest.register_alias("bucket_lava", "bucket:bucket_lava")

minetest.register_craft({
output = 'bucket:bucket_empty 1',
output = "bucket:bucket_empty 1",
recipe = {
{'default:steel_ingot', '', 'default:steel_ingot'},
{'', 'default:steel_ingot', ''},
{"default:steel_ingot", "", "default:steel_ingot"},
{"", "default:steel_ingot", ""},
}
})

Expand Down
14 changes: 7 additions & 7 deletions mods/doors/init.lua
Expand Up @@ -701,19 +701,19 @@ doors.register_trapdoor("doors:trapdoor_steel", {
})

minetest.register_craft({
output = 'doors:trapdoor 2',
output = "doors:trapdoor 2",
recipe = {
{'group:wood', 'group:wood', 'group:wood'},
{'group:wood', 'group:wood', 'group:wood'},
{'', '', ''},
{"group:wood", "group:wood", "group:wood"},
{"group:wood", "group:wood", "group:wood"},
{"", "", ""},
}
})

minetest.register_craft({
output = 'doors:trapdoor_steel',
output = "doors:trapdoor_steel",
recipe = {
{'default:steel_ingot', 'default:steel_ingot'},
{'default:steel_ingot', 'default:steel_ingot'},
{"default:steel_ingot", "default:steel_ingot"},
{"default:steel_ingot", "default:steel_ingot"},
}
})

Expand Down
4 changes: 2 additions & 2 deletions mods/dye/init.lua
Expand Up @@ -94,7 +94,7 @@ local dye_recipes = {
for _, mix in pairs(dye_recipes) do
minetest.register_craft({
type = "shapeless",
output = 'dye:' .. mix[3] .. ' 2',
recipe = {'dye:' .. mix[1], 'dye:' .. mix[2]},
output = "dye:" .. mix[3] .. " 2",
recipe = {"dye:" .. mix[1], "dye:" .. mix[2]},
})
end
8 changes: 4 additions & 4 deletions mods/farming/nodes.lua
Expand Up @@ -217,16 +217,16 @@ for i = 1, 5 do
minetest.override_item("default:grass_"..i, {drop = {
max_items = 1,
items = {
{items = {'farming:seed_wheat'},rarity = 5},
{items = {'default:grass_1'}},
{items = {"farming:seed_wheat"},rarity = 5},
{items = {"default:grass_1"}},
}
}})
end

minetest.override_item("default:junglegrass", {drop = {
max_items = 1,
items = {
{items = {'farming:seed_cotton'},rarity = 8},
{items = {'default:junglegrass'}},
{items = {"farming:seed_cotton"},rarity = 8},
{items = {"default:junglegrass"}},
}
}})
26 changes: 13 additions & 13 deletions mods/stairs/init.lua
Expand Up @@ -109,7 +109,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
if recipeitem then
-- Recipe matches appearence in inventory
minetest.register_craft({
output = 'stairs:stair_' .. subname .. ' 8',
output = "stairs:stair_" .. subname .. " 8",
recipe = {
{"", "", recipeitem},
{"", recipeitem, recipeitem},
Expand All @@ -119,10 +119,10 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,

-- Use stairs to craft full blocks again (1:1)
minetest.register_craft({
output = recipeitem .. ' 3',
output = recipeitem .. " 3",
recipe = {
{'stairs:stair_' .. subname, 'stairs:stair_' .. subname},
{'stairs:stair_' .. subname, 'stairs:stair_' .. subname},
{"stairs:stair_" .. subname, "stairs:stair_" .. subname},
{"stairs:stair_" .. subname, "stairs:stair_" .. subname},
},
})

Expand All @@ -135,7 +135,7 @@ function stairs.register_stair(subname, recipeitem, groups, images, description,
if baseburntime > 0 then
minetest.register_craft({
type = "fuel",
recipe = 'stairs:stair_' .. subname,
recipe = "stairs:stair_" .. subname,
burntime = math.floor(baseburntime * 0.75),
})
end
Expand Down Expand Up @@ -224,7 +224,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,

if recipeitem then
minetest.register_craft({
output = 'stairs:slab_' .. subname .. ' 6',
output = "stairs:slab_" .. subname .. " 6",
recipe = {
{recipeitem, recipeitem, recipeitem},
},
Expand All @@ -234,8 +234,8 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
minetest.register_craft({
output = recipeitem,
recipe = {
{'stairs:slab_' .. subname},
{'stairs:slab_' .. subname},
{"stairs:slab_" .. subname},
{"stairs:slab_" .. subname},
},
})

Expand All @@ -248,7 +248,7 @@ function stairs.register_slab(subname, recipeitem, groups, images, description,
if baseburntime > 0 then
minetest.register_craft({
type = "fuel",
recipe = 'stairs:slab_' .. subname,
recipe = "stairs:slab_" .. subname,
burntime = math.floor(baseburntime * 0.5),
})
end
Expand Down Expand Up @@ -335,7 +335,7 @@ function stairs.register_stair_inner(subname, recipeitem, groups, images,

if recipeitem then
minetest.register_craft({
output = 'stairs:stair_inner_' .. subname .. ' 7',
output = "stairs:stair_inner_" .. subname .. " 7",
recipe = {
{"", recipeitem, ""},
{recipeitem, "", recipeitem},
Expand All @@ -352,7 +352,7 @@ function stairs.register_stair_inner(subname, recipeitem, groups, images,
if baseburntime > 0 then
minetest.register_craft({
type = "fuel",
recipe = 'stairs:stair_inner_' .. subname,
recipe = "stairs:stair_inner_" .. subname,
burntime = math.floor(baseburntime * 0.875),
})
end
Expand Down Expand Up @@ -415,7 +415,7 @@ function stairs.register_stair_outer(subname, recipeitem, groups, images,

if recipeitem then
minetest.register_craft({
output = 'stairs:stair_outer_' .. subname .. ' 6',
output = "stairs:stair_outer_" .. subname .. " 6",
recipe = {
{"", recipeitem, ""},
{recipeitem, recipeitem, recipeitem},
Expand All @@ -431,7 +431,7 @@ function stairs.register_stair_outer(subname, recipeitem, groups, images,
if baseburntime > 0 then
minetest.register_craft({
type = "fuel",
recipe = 'stairs:stair_outer_' .. subname,
recipe = "stairs:stair_outer_" .. subname,
burntime = math.floor(baseburntime * 0.625),
})
end
Expand Down
2 changes: 1 addition & 1 deletion mods/walls/init.lua
Expand Up @@ -31,7 +31,7 @@ walls.register = function(wall_name, wall_desc, wall_texture_table, wall_mat, wa
minetest.register_craft({
output = wall_name .. " 6",
recipe = {
{ '', '', '' },
{ "", "", "" },
{ wall_mat, wall_mat, wall_mat},
{ wall_mat, wall_mat, wall_mat},
}
Expand Down

0 comments on commit 7f83012

Please sign in to comment.