- 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:
parent
2f06b89f8f
commit
843c9e1924
1 changed files with 5 additions and 3 deletions
|
|
@ -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 );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue