diff --git a/src/game/World.cpp b/src/game/World.cpp index d7c1ae172..8f7e136aa 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -243,12 +243,12 @@ World::AddSession_ (WorldSession* s) } WorldPacket packet(SMSG_AUTH_RESPONSE, 1 + 4 + 1 + 4 + 1); - packet << uint8 (AUTH_OK); - packet << uint32 (0); // BillingTimeRemaining - packet << uint8 (0); // BillingPlanFlags - packet << uint32 (0); // BillingTimeRested - packet << uint8 (s->Expansion()); // 0 - normal, 1 - TBC, must be set in database manually for each account - s->SendPacket (&packet); + packet << uint8(AUTH_OK); + packet << uint32(0); // BillingTimeRemaining + packet << uint8(0); // BillingPlanFlags + packet << uint32(0); // BillingTimeRested + packet << uint8(s->Expansion()); // 0 - normal, 1 - TBC, 2 - WotLK. Must be set in database manually for each account. + s->SendPacket(&packet); s->SendAddonsInfo(); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 3119190d1..dee4ceea4 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11624" + #define REVISION_NR "11625" #endif // __REVISION_NR_H__