Various mods: Use " " instead of ' ' for item names
This commit is contained in:
parent
a5bde8e9ba
commit
7f830124f7
6 changed files with 30 additions and 30 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue