1
This commit is contained in:
parent
92f536a8ac
commit
712a7e7a8a
@ -1348,8 +1348,10 @@ void Player::ProcPreSettlementInfo(const std::string& pre_settlement_info)
|
|||||||
{
|
{
|
||||||
std::vector<std::string> tmp_strings;
|
std::vector<std::string> tmp_strings;
|
||||||
a8::Split(pre_settlement_info, tmp_strings, ',');
|
a8::Split(pre_settlement_info, tmp_strings, ',');
|
||||||
game_times = a8::XValue(tmp_strings[0]);
|
if (tmp_strings.size() >= 4) {
|
||||||
win_times = a8::XValue(tmp_strings[1]);
|
game_times = a8::XValue(tmp_strings[0]);
|
||||||
kill_times = a8::XValue(tmp_strings[2]);
|
win_times = a8::XValue(tmp_strings[1]);
|
||||||
rank = a8::XValue(tmp_strings[3]);
|
kill_times = a8::XValue(tmp_strings[2]);
|
||||||
|
rank = a8::XValue(tmp_strings[3]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user