Changeset 83 for trunk/src/game/World.cpp
- Timestamp:
- 11/19/08 13:32:42 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/World.cpp
r51 r83 230 230 packet << uint8 (0); 231 231 packet << uint32 (0); 232 packet << uint8 (s-> IsTBC() ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account232 packet << uint8 (s->Expansion () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account 233 233 s->SendPacket (&packet); 234 234 … … 267 267 packet << uint8 (0); 268 268 packet << uint32 (0); 269 packet << uint8 (sess-> IsTBC() ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account269 packet << uint8 (sess->Expansion () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account 270 270 packet << uint32(GetQueuePos (sess)); 271 271 sess->SendPacket (&packet);