From b6e9d6872d4e007f0247d1a937a62b23fffc61f8 Mon Sep 17 00:00:00 2001 From: David Markowitz <39972741+EmosewaMC@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:39:36 -0700 Subject: [PATCH] fix: not checking OnChat block node (#1820) --- dGame/dPropertyBehaviors/Strip.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dGame/dPropertyBehaviors/Strip.cpp b/dGame/dPropertyBehaviors/Strip.cpp index d42c1f91..2a5f25a0 100644 --- a/dGame/dPropertyBehaviors/Strip.cpp +++ b/dGame/dPropertyBehaviors/Strip.cpp @@ -111,7 +111,7 @@ void Strip::OnChatMessageReceived(const std::string& sMessage) { if (m_PausedTime > 0.0f || !HasMinimumActions()) return; const auto& nextAction = GetNextAction(); - if (nextAction.GetValueParameterString() == sMessage) { + if (nextAction.GetType() == "OnChat" && nextAction.GetValueParameterString() == sMessage) { IncrementAction(); m_WaitingForAction = false; }