From 8194d80831b3a644f50cb743a9343bf964b8713c Mon Sep 17 00:00:00 2001 From: "ALLEN-PC\\acj30" Date: Wed, 25 Oct 2023 10:49:23 -0500 Subject: [PATCH] Fix typo in logic_branch removal signal for logic_branch_listener --- sp/src/game/server/logicentities.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sp/src/game/server/logicentities.cpp b/sp/src/game/server/logicentities.cpp index aa838a35..0d6bb006 100644 --- a/sp/src/game/server/logicentities.cpp +++ b/sp/src/game/server/logicentities.cpp @@ -3112,7 +3112,7 @@ void CLogicBranch::UpdateOnRemove() CBaseEntity *pEntity = m_Listeners.Element( i ).Get(); if ( pEntity ) { - g_EventQueue.AddEvent( this, "_OnLogicBranchRemoved", 0, this, this ); + g_EventQueue.AddEvent( pEntity, "_OnLogicBranchRemoved", 0, this, this ); } }