WoWCenter.pl
wikass zabił Mythrax the Unraveler (Normal Uldir) po raz 2.     
kuturin zdobył 7th Legionnaire's Cuffs.     
Nikandra spełnił kryterium Loot 200,000 gold osiągnięcia Got My Mind On My Money.     
Tooly zdobył Fairweather Helm.     
Muattin zdobył osiągnięcie The Dirty Five.     
Yoozku zdobył Parrotfeather Cloak.     
Mlody89 zdobył Royal Apothecary Drape.     
Weakness zabił Dazar, The First King (Mythic King's Rest) po raz 6.     
liq spełnił kryterium osiągnięcia Saving for a Rainy Day.     
Osiol spełnił kryterium osiągnięcia Saving for a Rainy Day.     
Wuntu zabił Zek'voz, Herald of N'zoth (Heroic Uldir) po raz 1.     
Olsa zabił Vectis (Heroic Uldir) po raz 6.     
Sarenus spełnił kryterium osiągnięcia Saving for a Rainy Day.     
kajtasus zdobył osiągnięcie Come Sail Away.     
ossir spełnił kryterium osiągnięcia Saving for a Rainy Day.     
mcpablo spełnił kryterium Alliance players slain. osiągnięcia Frontline Slayer.     
Emmm zabił Taloc (Heroic Uldir) po raz 17.     
AsaGorth spełnił kryterium Big-Mouth Clam osiągnięcia The Oceanographer.     

BUG: MAX_PLAYER_LEVEL_TABLE and MoP

blizz -> wysłany:
Some of the WoW UI code uses MAX_PLAYER_LEVEL_TABLE[GetAccountExpansionLevel()] to determine the current player's level cap—I know this code is used in FrameXML/ReputationFrame.lua, and I used it in Pawn, and I'm sure it's used in a bunch of places also. Now that the Mists of Pandaria preorders are available, GetAccountExpansionLevel returns 4, but MAX_PLAYER_LEVEL_TABLE doesn't have a [4] if your running on WoW 4.3 realms, so all of that code breaks now for anyone who's upgraded.

Blizzard—for backward compatibility (including with Blizzard code in the current live client) maybe the server should never send anything higher than 3 for whatever GetAccountExpansionLevel uses on live realms. (Send the actual value on the PTRs and beta realms of course.)

AddOn authors—Time to write a special case!
blizz -> wysłany:
Actually this is not a bug.

GetAccountExpansionLevel() is different from GetExpansionLevel().

You should use GetExpansionLevel() when indexing into MAX_PLAYER_LEVEL_TABLE.