UpdateMapList
Example
Manually updating the Map List with one Category.
--
local mapList = {
["Example"] = {"gm_flatgrass", "gm_construct"}
}
pnlMainMenu:Call( "UpdateMaps(" .. util.TableToJSON(mapList) .. ")" )
Output: 

Example
Manually updating the Map List with an extra Category.
--
local mapList = GetMapList()
mapList["Example"] = {"gm_flatgrass", "gm_construct"}
pnlMainMenu:Call( "UpdateMaps(" .. util.TableToJSON(mapList) .. ")" )
Output: 
