All public logs

From Space Station 14 Wiki

Combined display of all available logs of Space Station 14 Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 15:08, 9 August 2024 Aliser talk contribs created page Module:Color (Created page with "local p = {} --p stands for package local getArgs = require('Module:Arguments').getArgs local color_by_code = { ["dept:command"] = "#334E6D" } function p.main(frame) local args = getArgs(frame) local color_code = args[1] local result = color_by_code[color_code] if result == nil then error("unknown color code: " .. color_code) end return result end return p")