1. Several addons have broken because the API SetMapZoom() function can't handle the new values returned by GetMapContinents(). Here's an example from Archy:

    for continent_id, continent_name in pairs(MAP_CONTINENTS) do
    
        Archy:Print("Archy: Continent_id: [" .. continent_id .. "], name: [" .. continent_name .. "]") -- debug
    

    -- [[ 13 Kalimdor 14 Eastern 466 Outland 485 Northrend and then an error ]]--

        _G.SetMapZoom(continent_id)
    

    SetMapZoom chokes when it tries to process the 485 value for Northrend.

    And I have no idea who to report this to :-(