This commit is contained in:
asayre 2006-08-23 04:36:58 +00:00
parent 4b017be1c5
commit 3d3c880b43
2 changed files with 4 additions and 1 deletions

View file

@ -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;

View file

@ -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;
}