Toggle menu
15
236
81
27.8K
Kenshi Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

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).

Logs
  • 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")