- Changelings can now be attacked while morphed without them attacking first in Trammel ruleset facets.

- Changeling notoriety is now resent to the client when morphing.
This commit is contained in:
eos 2012-03-07 22:08:11 +00:00
parent 2f06b89f8f
commit 843c9e1924

View file

@ -63,6 +63,7 @@ namespace Server.Mobiles
}
public override bool ShowFameTitle{ get{ return false; } }
public override bool InitialInnocent{ get{ return ( m_MorphedInto != null ); } }
public override void GenerateLoot()
{
@ -79,13 +80,13 @@ namespace Server.Mobiles
get { return m_MorphedInto; }
set
{
if ( value == this )
value = null;
if ( m_MorphedInto != value )
{
Revert();
if ( value == this )
value = null;
if ( value != null )
{
Morph( value );
@ -93,6 +94,7 @@ namespace Server.Mobiles
}
m_MorphedInto = value;
Delta( MobileDelta.Noto );
}
}
}