10,735
edits
TheNightAvl (talk | contribs) mNo edit summary |
TheNightAvl (talk | contribs) mNo edit summary |
||
Line 1,709: | Line 1,709: | ||
for i, j in pairs(pp) do | for i, j in pairs(pp) do | ||
if type(j) == "string" then | if not (table_type == "intr" and i == "rpst") then | ||
if type(j) == "string" then | |||
table.insert(review, "* <code>" .. string.upper(i) .. "</code>: '''" .. j .. "'''" .. endings[i]) | |||
elseif type(j) == "table" then | |||
for k, l in ipairs(j) do | |||
local temp = "* <code>" .. string.upper(i) .. "[" .. k .. "]</code>: '''" .. l.word .. "'''" .. endings[i] | |||
if l.note then temp = temp .. " (" .. l.note .. ")" end | |||
table.insert(review, temp) | |||
end | |||
end | end | ||
end | end |