All public logs

Jump to navigation Jump to search

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

Logs
  • 10:34, 25 November 2023 upgradewastaken#0 talk contribs created page Module:VariablesLuaUtil (Created page with "-- Code from: https://lol.fandom.com/wiki/Module:VarsUtil -- Helper module for accessing https://www.mediawiki.org/wiki/Extension:VariablesLua local yesno = require ('Module:Yesno') local binser = require('binser') -- included with install of mw.ext.LuaCache local VariablesLua = mw.ext.VariablesLua local p = {} function p.getVar(var) local val = VariablesLua.var(var) if val == '' then return nil end return val end function p.getBool(var) local val = p.getVar(va...")