This commit is contained in:
mark 2009-07-05 04:03:37 +00:00
parent 879e2fc778
commit f2b9f04620
29 changed files with 62 additions and 55 deletions

View file

@ -4950,7 +4950,7 @@ namespace Server.Mobiles
protected override void OnTick()
{
if( Core.ML && m_Creature.IsDeadBondedPet );
if( Core.ML && m_Creature.IsDeadBondedPet )
{
m_Creature.Delete();
}

View file

@ -611,9 +611,9 @@ namespace Server.Engines.CannedEvil
return Location;
}
private const int Level1 = 5; // First spawn level from 0-5 red skulls
private const int Level2 = 9; // Second spawn level from 6-9 red skulls
private const int Level3 = 13; // Third spawn level from 10-13 red skulls
private const int Level1 = 4; // First spawn level from 0-4 red skulls
private const int Level2 = 8; // Second spawn level from 5-8 red skulls
private const int Level3 = 12; // Third spawn level from 9-12 red skulls
public int GetSubLevel()
{