- fixed: FLevelLocals did not set the owner for its event manager.

This commit is contained in:
Christoph Oelckers 2019-03-02 13:24:52 +01:00
parent 0febe20a08
commit 00febf0498

View file

@ -1530,7 +1530,7 @@ FLevelLocals::FLevelLocals() : Behaviors(this), tagManager(this)
{
Players[i] = &players[i];
}
localEventManager = new EventManager;
localEventManager = new EventManager(this);
}
FLevelLocals::~FLevelLocals()