Fixing a stupid typo with the dead event handler in SET_UNIT.

This commit is contained in:
FlightControl
2018-10-14 14:05:27 +02:00
parent 09c46595e5
commit 112945b3f6
2 changed files with 4 additions and 4 deletions

View File

@@ -1908,7 +1908,7 @@ do -- SET_UNIT
if _DATABASE then
self:_FilterStart()
self:HandleEvent( EVENTS.Birth, self._EventOnBirth )
self:HandleEvent( EVENTS.Dead, self._EventOnDeadOrCrashOr )
self:HandleEvent( EVENTS.Dead, self._EventOnDeadOrCrash )
self:HandleEvent( EVENTS.Crash, self._EventOnDeadOrCrash )
self:HandleEvent( EVENTS.RemoveUnit, self._EventOnDeadOrCrash )
end