Main public logs
More actions
Combined display of all available logs of Kenshi Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 01:49, 18 February 2025 Prd talk contribs created page Module:Redirect-distinguish-for (Created page with "mArguments = require('Module:Arguments') mRedirectHatnote = require("Module:Redirect hatnote") local p = {} function p.redirectDistinguishFor(frame) local args = mArguments.getArgs(frame, {parentOnly = true}) local maxArg = 0 for k, v in pairs(args) do if type(k) == 'number' and k > maxArg then maxArg = k end end local parsedArgs = {} for i = 1, maxArg do if i ~= 2 then parsedArgs[i == 1 and 1 or i - 1] = args[i] end end return (string.gsub( --Note that...")