Main 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).
- 07:56, 24 May 2025 Aliser talk contribs created page Module:Color/utils/init (Created page with "local function min_index(first, ...) local min, index = first, 1 for i, v in ipairs {...} do if v < min then min, index = v, i + 1 end end return min, index end local function max_index(first, ...) local max, index = first, 1 for i, v in ipairs {...} do if v > max then max, index = v, i + 1 end end return max, index end local function round(x) return x + 0.5 - (x + 0.5) % 1 end local function clamp(x, min, max) return x...")