diff --git a/Moose Development/Moose/Core/Event.lua b/Moose Development/Moose/Core/Event.lua index 40f225ade..60df23239 100644 --- a/Moose Development/Moose/Core/Event.lua +++ b/Moose Development/Moose/Core/Event.lua @@ -744,7 +744,7 @@ function EVENT:onEvent( Event ) local EventMeta = _EVENTMETA[Event.id] - --self:E( { EventMeta.Text, Event } ) -- Activate the see all incoming events ... + self:E( { EventMeta.Text, Event } ) -- Activate the see all incoming events ... if self and self.Events and @@ -886,6 +886,7 @@ function EVENT:onEvent( Event ) -- So now the EventClass must be a UNIT class!!! We check if it is still "Alive". if EventClass:IsAlive() or + Event.id == EVENTS.PlayerEnterUnit or Event.id == EVENTS.Crash or Event.id == EVENTS.Dead then @@ -935,6 +936,7 @@ function EVENT:onEvent( Event ) -- So now the EventClass must be a GROUP class!!! We check if it is still "Alive". if EventClass:IsAlive() or + Event.id == EVENTS.PlayerEnterUnit or Event.id == EVENTS.Crash or Event.id == EVENTS.Dead then