From 85a1b5bc9c5b0caf58687268b782a4ac5c338836 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Wed, 27 May 2020 15:26:55 +0800 Subject: [PATCH] 1 --- server/gameserver/roommgr.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server/gameserver/roommgr.cc b/server/gameserver/roommgr.cc index a34dff0..542f051 100644 --- a/server/gameserver/roommgr.cc +++ b/server/gameserver/roommgr.cc @@ -30,12 +30,14 @@ static RoomType_e GetHumanRoomType(const cs::CMJoin& msg) } //游戏次数,吃鸡数,击杀数 int game_times = a8::XValue(tmp_strings[0]); + #if 0 if (!f8::IsOnlineEnv()) { game_times = 0; if (!msg.team_uuid().empty()) { game_times = 1; } } + #endif #if 0 int win_times = a8::XValue(tmp_strings[1]); int kill_times = a8::XValue(tmp_strings[2]);