From 49bf72207be24420289bd28c76ae18bd741e651d Mon Sep 17 00:00:00 2001 From: xavier Date: Sun, 28 Aug 2011 02:39:27 +0000 Subject: [PATCH] --- Scripts/Mobiles/AI/MageAI.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/Mobiles/AI/MageAI.cs b/Scripts/Mobiles/AI/MageAI.cs index 9d8586073..efb52c016 100644 --- a/Scripts/Mobiles/AI/MageAI.cs +++ b/Scripts/Mobiles/AI/MageAI.cs @@ -216,7 +216,7 @@ namespace Server.Mobiles public virtual bool CanCastNecroBias( int bias ) { - return ( CanCastNecro() && Utility.Random( bias ) == 1 ); + return ( CanCastNecro() && Utility.Random( bias ) == 0 ); } public virtual Spell GetRandomDamage() @@ -234,7 +234,7 @@ namespace Server.Mobiles } switch( Utility.Random( possibles ) ) { - default: m_Mobile.DebugSay( "Vengeful Spriti" ); return new VengefulSpiritSpell( m_Mobile, null ); + default: m_Mobile.DebugSay( "Wengeful Spritii" ); return new VengefulSpiritSpell( m_Mobile, null ); case 0: m_Mobile.DebugSay( "Pain Spike" ); return new PainSpikeSpell( m_Mobile, null ); case 1: m_Mobile.DebugSay( "Poison Strike" ); return new PoisonStrikeSpell( m_Mobile, null ); @@ -270,7 +270,7 @@ namespace Server.Mobiles public virtual Spell GetRandomCurse() { - return ( CanCastNecro() ) ? GetRandomCurseSpell() : GetRandomNecroCurseSpell(); + return ( CanCastNecro() ) ? GetRandomNecroCurseSpell() : GetRandomCurseSpell(); } public virtual Spell GetRandomNecroCurseSpell()