Comment on page
StatusEffectRemoved
Fires when a Status Effect is removed from an Entity.
Example usage:
Events.StatusEffectRemoved(function(event)
if (event.statusEffect == StatusEffectType.TITANS_BLESSING) then
local player = event.entity:getPlayer()
if (player == nil) then
return
end
SoundService.playSoundForPlayer(player, SoundType.TITAN_IDLE_4)
end
end)
The entity that had the status effect removed from it.
The type of status effect that was removed from the entity.
Last modified 4mo ago