diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 3661b5e..7cf9c1e 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -516,7 +516,9 @@ void Human::BeKill(int killer_id, const std::string& killer_name, int weapon_id) } } } - SendGameOver(); + if (!HasLiveTeammate()) { + SendGameOver(); + } } }