If you want to help us maintaining this wiki, check out our discord server: https://discord.gg/3u69jMa 

DeathEffect DestroyBody

From SWRC Wiki
Jump to navigation Jump to search
class DeathEffect_DestroyBody extends DeathEffect;

function DoDeathEffect( Pawn Target, DeathEffectInfo DeathInfo )
{
	if( Target.DeathEffect != None )
		Target.Spawn( Target.DeathEffect );

	Target.Destroy();
}

defaultproperties
{
}