diff --git a/src/game_defs.h b/src/game_defs.h index 98b988b0..7c955413 100644 --- a/src/game_defs.h +++ b/src/game_defs.h @@ -29,11 +29,11 @@ #define HTML_LOG 1 #define POKERTH_VERSION_MAJOR 0 -#define POKERTH_VERSION_MINOR 83 +#define POKERTH_VERSION_MINOR 90 #define POKERTH_VERSION ((POKERTH_VERSION_MAJOR << 8) | POKERTH_VERSION_MINOR) -#define POKERTH_BETA_REVISION 0 -#define POKERTH_BETA_RELEASE_STRING "0.9 beta1" +#define POKERTH_BETA_REVISION 1 +#define POKERTH_BETA_RELEASE_STRING "0.9 alpha" #define RANKING_GAME_START_CASH 10000 #define RANKING_GAME_NUMBER_OF_PLAYERS 10 diff --git a/src/session.cpp b/src/session.cpp index f6a90cdc..f2d035b0 100755 --- a/src/session.cpp +++ b/src/session.cpp @@ -174,9 +174,11 @@ void Session::startInternetClient() myNetClient->Init( myConfig->readConfigString("InternetServerAddress"), - myConfig->readConfigString("InternetServerListAddress"), +// myConfig->readConfigString("InternetServerListAddress"), + "pokerth.net/serverlist_testing.xml.z", myConfig->readConfigString("ServerPassword"), - myConfig->readConfigInt("InternetServerConfigMode") == 0, +// myConfig->readConfigInt("InternetServerConfigMode") == 0, + true, myConfig->readConfigInt("InternetServerPort"), myConfig->readConfigInt("InternetServerUseIpv6") == 1, myConfig->readConfigInt("InternetServerUseSctp") == 1,