All public logs
Jump to navigation
Jump to search
Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:12, 17 October 2024 Alex talk contribs created page Module:MergeArgs (Created page with "-- <pre> local p = {} function p.merge(frame) local origArgs = frame.args local parentArgs = frame:getParent().args local args = {} for k, v in pairs(origArgs) do v = mw.text.trim(tostring(v)) if v ~= '' then args[k] = v end end for k, v in pairs(parentArgs) do v = mw.text.trim(tostring(v)) if v ~= '' then args[k] = v end end return args end -- </pre>")