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).
- 21:44, 19 February 2025 Prd talk contribs created page Module:Sort list (Created page with "local p = {} function p.asc(frame) items = splitLine( frame.args[1] ); table.sort( items ); return table.concat( items, "\n" ); end function p.desc(frame) items = splitLine( frame.args[1] ); table.sort( items, function (a, b) return a > b end ); return table.concat( items, "\n" ); end function splitLine( text ) return mw.text.split( text, "\n", true ); end return p")