diff options
| author | Nay <dnpd.dd@gmail.com> | 2011-11-24 00:36:02 +0000 |
|---|---|---|
| committer | Nay <dnpd.dd@gmail.com> | 2011-11-24 00:36:02 +0000 |
| commit | d6ad3c854a8d2414f5770ae3178563cd8ef9f65b (patch) | |
| tree | a5e0edf05933fa14b2a9854af291f2d42ec9f679 /src | |
| parent | 7e6afa7fe8a30b3878c9d0ba32ff18d5a11fcbae (diff) | |
Core/Auth: Fix SMSG_AUTH_RESPONSE
Should send an extra byte with expansion (selecting new classes in char enum screen is now possible)
Diffstat (limited to 'src')
| -rwxr-xr-x | src/server/game/Server/Protocol/Handlers/AuthHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/game/Server/Protocol/Handlers/AuthHandler.cpp b/src/server/game/Server/Protocol/Handlers/AuthHandler.cpp index d85f3e24aff..89a700f3e29 100755 --- a/src/server/game/Server/Protocol/Handlers/AuthHandler.cpp +++ b/src/server/game/Server/Protocol/Handlers/AuthHandler.cpp @@ -26,7 +26,8 @@ void WorldSession::SendAuthResponse(uint8 code, bool shortForm, uint32 queuePos) packet << uint32(0); // BillingTimeRemaining packet << uint8(0); // BillingPlanFlags packet << uint32(0); // BillingTimeRested - packet << uint8(Expansion()); // 0 - normal, 1 - TBC, 2 - WOTLK, must be set in database manually for each account + packet << uint8(Expansion()); // 0 - normal, 1 - TBC, 2 - WOTLK, 3 - CATA; must be set in database manually for each account + packet << uint8(Expansion()); // Unknown, these two show the same if (!shortForm) { |
