All public logs

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

Logs
  • 23:27, 15 September 2024 Mgpt talk contribs created page Module:Update history (Created page with "local p = {} local mw = require('mw') local function findBlockEnd(content, start_pos) local open_braces = 0 local current_pos = start_pos while current_pos <= #content do local char = content:sub(current_pos, current_pos) if char == "{" then open_braces = open_braces + 1 elseif char == "}" then open_braces = open_braces - 1 if open_braces == 0 then return current_pos end...")