This commit is contained in:
aozhiwei 2019-07-04 13:45:14 +08:00
parent eec460a58b
commit 791039a6e5

View File

@ -158,6 +158,12 @@ void Human::FillMFPlayerStats(cs::MFPlayerStats* stats_pb)
stats_pb->set_killer_name(stats.killer_name);
stats_pb->set_account_id(account_id);
for (auto& pair : stats.extra_drop) {
auto p = stats_pb->add_extra_drop();
p->set_key(pair.first);
p->set_value(pair.second);
}
}
void Human::GetAabbBox(AabbCollider& aabb_box)