We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b526e42 commit 79eb09cCopy full SHA for 79eb09c
Source/GlobalEventSystem/Private/GESHandler.cpp
@@ -398,6 +398,11 @@ void FGESHandler::EmitToListenersWithData(const FGESPropertyEmitContext& EmitDat
398
}
399
400
UWorld* World = EmitData.WorldContext->GetWorld();
401
+ if (!World->IsValidLowLevelFast())
402
+ {
403
+ UE_LOG(LogTemp, Error, TEXT("FGESHandler::EmitToListenersWithData: Emitted event has no world!"));
404
+ return;
405
+ }
406
407
//Attach a world listener to each unique world
408
if (!WorldMap.Contains(World))
0 commit comments