From c02993057fa2aa9b55f1dd84532c800bf6e10d88 Mon Sep 17 00:00:00 2001 From: Ange-Marie MAURIN Date: Tue, 15 Jul 2025 05:17:30 +0200 Subject: [PATCH] Fixing GetFormattedName AGAIN --- Source/DTFluxUtilities/Private/FTDFluxUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DTFluxUtilities/Private/FTDFluxUtils.cpp b/Source/DTFluxUtilities/Private/FTDFluxUtils.cpp index bcaf18e..2837493 100644 --- a/Source/DTFluxUtilities/Private/FTDFluxUtils.cpp +++ b/Source/DTFluxUtilities/Private/FTDFluxUtils.cpp @@ -10,7 +10,7 @@ FText UFTDFluxUtils::GetFormatedName(const int& Bib, const int MaxChar, const FS const FString OverFlowChar) { UDTFluxCoreSubsystem* CoreSubsystem = GEngine->GetEngineSubsystem(); - if (CoreSubsystem == nullptr) + if (CoreSubsystem != nullptr) { FDTFluxParticipant OutParticipant; CoreSubsystem->GetParticipant(Bib, OutParticipant);