From ee9abcc3f5c2e0227044aa65834cb0e7e87354ab Mon Sep 17 00:00:00 2001 From: TjgL Date: Wed, 12 Mar 2025 14:32:32 +0100 Subject: [PATCH] Fixed LMPlayer blueprint tick not working Signed-off-by: TjgL --- Source/LegumeMix/Private/Player/LMPlayer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/LegumeMix/Private/Player/LMPlayer.cpp b/Source/LegumeMix/Private/Player/LMPlayer.cpp index 0f93264..dd53538 100644 --- a/Source/LegumeMix/Private/Player/LMPlayer.cpp +++ b/Source/LegumeMix/Private/Player/LMPlayer.cpp @@ -49,6 +49,8 @@ void ALMPlayer::BeginPlay() void ALMPlayer::Tick(float DeltaTime) { + Super::Tick(DeltaTime); + if(bHitPeriodInProgress == true) { double TimeElapsedSinceLastDamage = GetWorld()->GetTimeSeconds() - TimeOfTheLastDamage;