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

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