mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-02-17 17:41:23 +00:00
- fixed: FLevelLocals did not set the owner for its event manager.
This commit is contained in:
parent
0febe20a08
commit
00febf0498
1 changed files with 1 additions and 1 deletions
|
@ -1530,7 +1530,7 @@ FLevelLocals::FLevelLocals() : Behaviors(this), tagManager(this)
|
||||||
{
|
{
|
||||||
Players[i] = &players[i];
|
Players[i] = &players[i];
|
||||||
}
|
}
|
||||||
localEventManager = new EventManager;
|
localEventManager = new EventManager(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
FLevelLocals::~FLevelLocals()
|
FLevelLocals::~FLevelLocals()
|
||||||
|
|
Loading…
Reference in a new issue