Модуль:Meals Lookup: различия между версиями

Нет описания правки
Метка: ручная отмена
Нет описания правки
Строка 17: Строка 17:


function p.getrecipetype(frame, id)
function p.getrecipetype(frame, id)
     local out = nil
     local out = "nil"
     for type, recipes in pairs(p.meals) do
     for type, recipes in pairs(p.meals) do
         for recipeId, recipe in pairs(recipes) do
         for recipeId, recipe in pairs(recipes) do
Строка 25: Строка 25:
             end
             end
         end
         end
         if out ~= nil then
         if out ~= "nil" then
             break
             break
         end
         end