This commit is contained in:
Stickscolor 2023-07-17 16:03:36 +02:00
parent 9331deaeff
commit d1b76f6bac
2 changed files with 2 additions and 2 deletions

View File

@ -14,4 +14,4 @@ yl_cinema.settings.enable_bigscreen = minetest.settings:get("yl_cinema.enable_bi
yl_cinema.settings.enable_craft_bigscreen = minetest.settings:get("yl_cinema.enable_craft_bigscreen") or true
yl_cinema.settings.enable_craft_bigscreen_recipe = minetest.settings:get("yl_cinema.enable_craft_bigscreen_recipe") or
"wool:grey,wool:grey,wool:grey,wool:grey,wool:grey,wool:grey,wool:black, ,wool:black"
"wool:grey,wool:grey,wool:grey,wool:grey,wool:grey,wool:grey,wool:black,,wool:black"

View File

@ -47,7 +47,7 @@ local function mediacallback(name)
end
local function string_to_recipe(s)
local recipe = string.split(s, ",")
local recipe = string.split(s, ",",true) --
if #recipe ~= 9 then
return false
end