Fixes
This commit is contained in:
parent
4b017be1c5
commit
3d3c880b43
2 changed files with 4 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue