diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 4a635b2..237d4d8 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -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)