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

мНет описания правки
мНет описания правки
Строка 5: Строка 5:
     local page = mw.title.new(filePath)
     local page = mw.title.new(filePath)
     local content = page and page:getContent()
     local content = page and page:getContent()
     return content and mw.text.jsonDecode(content) or nil
     if content then
        content = content:gsub(':null', ':"__null__"')
        return mw.text.jsonDecode(content)
    end
    return nil
end
end