diff --git a/server/gameserver/human.cc b/server/gameserver/human.cc index 00c894d..5237c84 100644 --- a/server/gameserver/human.cc +++ b/server/gameserver/human.cc @@ -1483,8 +1483,10 @@ void Human::SendUpdateMsg() void Human::SendGameOver() { - if (!sending_gameover_) { - InternalSendGameOver(); + if (entity_subtype == EST_Player) { + if (!sending_gameover_) { + InternalSendGameOver(); + } } }