Skip to content

Commit

Permalink
[11625] Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
zergtmn committed Jun 11, 2011
1 parent a9240a1 commit 37187fa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/game/World.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "11624"
#define REVISION_NR "11625"
#endif // __REVISION_NR_H__

0 comments on commit 37187fa

Please sign in to comment.