Browse Source

Fix incorrect message tracking in BroadcastHanlder

pull/8/head
Anton Tarasenko 2 years ago
parent
commit
654f6a6452
  1. 2
      sources/Unreal/BroadcastsAPI/BroadcastEventsObserver.uc

2
sources/Unreal/BroadcastsAPI/BroadcastEventsObserver.uc

@ -208,7 +208,7 @@ public final function Initialize(UnrealService service)
{ {
usedInjectionLevel = usedInjectionLevel =
class'SideEffects'.default.broadcastHandlerInjectionLevel; class'SideEffects'.default.broadcastHandlerInjectionLevel;
if (usedInjectionLevel != BHIJ_Root) { if (usedInjectionLevel == BHIJ_Root) {
Disable('Tick'); Disable('Tick');
} }
if (service == none) { if (service == none) {

Loading…
Cancel
Save