Show
Ignore:
Timestamp:
11/19/08 13:32:42 (17 years ago)
Author:
yumileroy
Message:

[svn] * Compile fixes from previous revs.

Original author: KingPin?
Date: 2008-10-20 14:11:58-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/game/World.cpp

    r51 r83  
    230230  packet << uint8 (0); 
    231231  packet << uint32 (0); 
    232   packet << uint8 (s->IsTBC () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account 
     232  packet << uint8 (s->Expansion () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account 
    233233  s->SendPacket (&packet); 
    234234 
     
    267267    packet << uint8 (0); 
    268268    packet << uint32 (0); 
    269     packet << uint8 (sess->IsTBC () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account 
     269    packet << uint8 (sess->Expansion () ? 1 : 0); // 0 - normal, 1 - TBC, must be set in database manually for each account 
    270270    packet << uint32(GetQueuePos (sess)); 
    271271    sess->SendPacket (&packet);