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

[svn] * Fixed compile from r78
* Fixed: not apply healling bonus to spell 40972 heal amount. - Source Mangos
* Item 30627 hidden cooldown - Source Mangos
* Fixed Trinityrealm autopatching system - Source Arrai
* Add support for autoconf 2.6.2 and newer - Source Derex
Some decent sized changes, please test before deploying - KP

Original author: KingPin?
Date: 2008-10-19 21:08:34-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/trinityrealm/AuthSocket.h

    r44 r74  
    3434#include "sockets/Parse.h" 
    3535#include "sockets/Socket.h" 
     36#include "zthread/Mutex.h" 
    3637 
    3738/// Handle login commands 
     
    5960 
    6061        FILE *pPatch; 
     62        ZThread::Mutex patcherLock; 
    6163        bool IsLag(); 
    6264 
     
    7173        std::string _login; 
    7274        std::string _safelogin; 
    73         uint8 _localization; 
     75         
     76         
     77        // Since GetLocaleByName() is _NOT_ bijective, we have to store the locale as a string. Otherwise we can't differ 
     78        // between enUS and enGB, which is important for the patch system 
     79        std::string _localizationName; 
     80        uint16 _build; 
    7481        AccountTypes _accountSecurityLevel; 
    7582};