Related changes
More actions
Enter a page name to see changes on pages linked to or from that page. (To see members of a category, enter Category:Name of category). Changes to pages on your Watchlist are in bold.
List of abbreviations:
- N
- This edit created a new page (also see list of new pages)
- m
- This is a minor edit
- b
- This edit was performed by a bot
- (±123)
- The page size changed by this number of bytes
12 December 2025
|
|
21:33 | (Protection log) [Eviand (2×)] | |||
|
|
21:33 Eviand talk contribs protected Module:GameSummons [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [cascading] (hist) | ||||
|
|
19:54 Eviand talk contribs protected Module:GameData [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [cascading] (hist) | ||||
| N 21:11 | Module:GameSummons diffhist +7,537 Eviand talk contribs (Created page with "-- Module:GameSummons -- -- Renders summon data (from Data:summons.json) into an infobox-style table. -- Data is loaded via Module:GameData. -- -- Supported usage patterns (via Template:Summon): -- {{Summon|Angel Mage}} -> uses display Name (recommended) -- {{Summon|name=Angel Mage}} -> explicit Name -- {{Summon|id=Angel Mage}} -> Internal Name (power use) local GameData = require("Module:GameData") local p = {} -------------------...") | ||||
| N 19:01 | Module:GameData diffhist +2,020 Eviand talk contribs (Created page with "local p = {} -- In-memory cache so we only parse each JSON page once local cache = {} local function decodeJsonPage(titleText) if cache[titleText] then return cache[titleText] end local title = mw.title.new(titleText) if not title then cache[titleText] = { meta = {}, records = {}, byId = {} } return cache[titleText] end local content = title:getContent() if not content or content == '' then cache[titleText]...") | ||||