Line 6:
Line 6:
local f = frame.args[2]
local f = frame.args[2]
local args = {}
local args = {}
−
for k, v in pairs(frame.args) do
+
for k, v in ipairs(frame.args) do
if type(k) == "number" and k >= 3 and type(v) == "string" then
if type(k) == "number" and k >= 3 and type(v) == "string" then
table.insert(args, v)
table.insert(args, v)
Line 52:
Line 52:
end
end
end
end
+
+
Utils.t = Utils.method( {args = {"Formatting", "tooltip", "text"}} )
return Utils
return Utils