From 7195b87ce615ba1210c38be185e1ba4dfda596c4 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Mon, 6 Feb 2023 21:51:33 -0800 Subject: [PATCH] Fix bug in CExplosion --- Runtime/World/CExplosion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/World/CExplosion.cpp b/Runtime/World/CExplosion.cpp index 94473a83e..a4e2af521 100644 --- a/Runtime/World/CExplosion.cpp +++ b/Runtime/World/CExplosion.cpp @@ -58,7 +58,7 @@ void CExplosion::AcceptScriptMsg(EScriptObjectMessage msg, TUniqueId sender, CSt CActor::AcceptScriptMsg(msg, sender, mgr); if (xec_explosionLight != kInvalidUniqueId) - mgr.SendScriptMsgAlways(sender, xec_explosionLight, msg); + mgr.SendScriptMsgAlways(xec_explosionLight, sender, msg); } void CExplosion::Think(float dt, CStateManager& mgr) {