This commit is contained in:
mark 2009-10-04 08:21:12 +00:00
parent 115e74f44e
commit 71d02318fd

View file

@ -7786,6 +7786,23 @@ namespace Server
{
}
[CommandProperty( AccessLevel.GameMaster )]
public bool Flying
{
get
{
return m_Flying;
}
set
{
if( m_Flying != value )
{
m_Flying = value;
Delta( MobileDelta.Flags );
}
}
}
[CommandProperty( AccessLevel.GameMaster )]
public bool Warmode
{