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

这个提交包含在:
TumeniNodes
2019-07-31 21:40:39 -04:00
提交者 Paramat
父节点 a5bde8e9ba
当前提交 7f830124f7
共有 6 个文件被更改,包括 30 次插入30 次删除

查看文件

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