Champion spawn corpses should decay after 1 minute.

This commit is contained in:
xavier 2010-10-17 02:05:19 +00:00
parent a62fbec243
commit 0a34928c87

View file

@ -507,6 +507,10 @@ namespace Server.Engines.CannedEvil
if ( m.Deleted )
{
if( m.Corpse != null && !m.Corpse.Deleted )
{
((Corpse)m.Corpse).BeginDecay( TimeSpan.FromMinutes( 1 ));
}
m_Creatures.RemoveAt( i );
--i;
++m_Kills;