This commit is contained in:
aozhiwei 2021-09-28 13:45:21 +08:00
parent 189cf610f9
commit 3e8811a629
2 changed files with 2 additions and 1 deletions

View File

@ -76,6 +76,7 @@ void MatchTeam::_CMMatchChoose(f8::MsgHdr& hdr, const cs::CMMatchChoose& msg)
*member->msg.mutable_weapons() = msg.weapons();
*member->msg.mutable_skins() = msg.skins();
*member->msg.mutable_skill_list() = msg.skill_list();
member->state = kMatchPrepare;
}
}

View File

@ -12,7 +12,7 @@ enum MatchTeamPhase_e
enum MatchTeamMember_e
{
kMatchReadying = 0,
kMatchPrepare = 2,
kMatchPrepare = 1,
};
namespace cs