[11625] Update comment

This commit is contained in:
zergtmn 2011-06-12 00:51:33 +06:00
parent 2006b7bf07
commit e91c1d07c7
2 changed files with 7 additions and 7 deletions

View file

@ -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();