diff --git a/src/Game/Systems/KillFeedSystem.cpp b/src/Game/Systems/KillFeedSystem.cpp index 373b1ff5..8a16d708 100644 --- a/src/Game/Systems/KillFeedSystem.cpp +++ b/src/Game/Systems/KillFeedSystem.cpp @@ -70,5 +70,11 @@ bool KillFeedSystem::OnPlayerDeath(Events::PlayerDeath& e) m_DeathQueue.push_back(kfInfo); } } + + + if(m_DeathQueue.size() > 3) { + m_DeathQueue.pop_front(); + } + return true; }