This commit is contained in:
aozhiwei 2020-07-08 13:19:34 +08:00
parent a65d3d0966
commit 1c4924dd5a

View File

@ -19,8 +19,8 @@
#include "framework/cpp/httpclientpool.h" #include "framework/cpp/httpclientpool.h"
#include "framework/cpp/utils.h" #include "framework/cpp/utils.h"
const int ROOM_NUM_UP_LIMIT = 900; const int ROOM_NUM_UP_LIMIT = 1000;
const int HUM_NUM_DOWN_LIMIT = 1200; const int HUM_NUM_DOWN_LIMIT = 1500;
static RoomType_e GetHumanRoomType(const cs::CMJoin& msg) static RoomType_e GetHumanRoomType(const cs::CMJoin& msg)
{ {
@ -47,7 +47,7 @@ static RoomType_e GetHumanRoomType(const cs::CMJoin& msg)
#endif #endif
if (game_times < MetaMgr::Instance()->newbie_game_times) { if (game_times < MetaMgr::Instance()->newbie_game_times) {
return RT_NewBrid; return RT_NewBrid;
} else if (game_times == 1) { } else if (game_times == MetaMgr::Instance()->newbie_game_times + 1) {
return RT_MidBrid; return RT_MidBrid;
} }
return RT_OldBrid; return RT_OldBrid;