diff --git a/Scripts/Items/Construction/Ankhs.cs b/Scripts/Items/Construction/Ankhs.cs index 05547680a..a75b5c4e6 100644 --- a/Scripts/Items/Construction/Ankhs.cs +++ b/Scripts/Items/Construction/Ankhs.cs @@ -352,6 +352,7 @@ namespace Server.Items m_Item = reader.ReadItem() as InternalItem; } + [TypeAlias( "Server.Items.AnkhEast+InternalItem" )] private class InternalItem : Item { private AnkhNorth m_Item; diff --git a/Scripts/Misc/Notoriety.cs b/Scripts/Misc/Notoriety.cs index 37235707a..8c9e7b6bc 100644 --- a/Scripts/Misc/Notoriety.cs +++ b/Scripts/Misc/Notoriety.cs @@ -8,6 +8,8 @@ using Server.Multis; using Server.Mobiles; using Server.Engines.PartySystem; using Server.Factions; +using Server.Spells.Necromancy; +using Server.Spells.Ninjitsu; namespace Server.Misc { @@ -308,7 +310,7 @@ namespace Server.Misc if( !(target is BaseCreature && ((BaseCreature)target).InitialInnocent) ) { - if( !target.Body.IsHuman && !target.Body.IsGhost && !IsPet( target as BaseCreature ) && !Server.Spells.Necromancy.TransformationSpell.UnderTransformation( target ) ) + if( !target.Body.IsHuman && !target.Body.IsGhost && !IsPet( target as BaseCreature ) && !TransformationSpell.UnderTransformation( target ) && !AnimalForm.UnderTransformation( target ) ) return Notoriety.CanBeAttacked; }