Various mods: Use " " instead of ' ' for item names

This commit is contained in:
TumeniNodes 2019-07-31 21:40:39 -04:00 committed by Paramat
parent a5bde8e9ba
commit 7f830124f7
6 changed files with 30 additions and 30 deletions

View file

@ -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},
}