Skip to content

Commit

Permalink
Addendum #3 to eae47fe
Browse files Browse the repository at this point in the history
  • Loading branch information
Dutchman101 committed Nov 27, 2023
1 parent 9544a34 commit 86846f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Server/mods/deathmatch/logic/CGame.cpp
Expand Up @@ -4708,7 +4708,7 @@ void CGame::HandleCrashDumpEncryption()

void CGame::RegisterClientTriggeredEventUsage(CPlayer* pPlayer)
{
if (!pPlayer && pPlayer->IsPlayer() && !pPlayer->IsBeingDeleted())
if (!pPlayer || !pPlayer->IsPlayer() || pPlayer->IsBeingDeleted())
return;

m_mapClientTriggeredEvents[pPlayer]++;
Expand Down

0 comments on commit 86846f1

Please sign in to comment.