Fixes body expression style.

This commit is contained in:
Kamron Batman 2018-09-14 08:46:14 -07:00
parent 3f0a72a62f
commit 33f5e77a24
957 changed files with 7424 additions and 15973 deletions

View file

@ -26,13 +26,13 @@ namespace Server.Items
[CommandProperty( AccessLevel.GameMaster )]
public FillableContentType ContentType
{
get { return FillableContent.Lookup( m_Content ); }
set { Content = FillableContent.Lookup( value ); }
get => FillableContent.Lookup( m_Content );
set => Content = FillableContent.Lookup( value );
}
public FillableContent Content
{
get { return m_Content; }
get => m_Content;
set
{
if ( m_Content == value )
@ -701,7 +701,7 @@ namespace Server.Items
public int Level => m_Level;
public Type[] Vendors => m_Vendors;
public FillableContentType TypeID { get { return Lookup( this ); } }
public FillableContentType TypeID => Lookup( this );
public FillableContent( int level, Type[] vendors, FillableEntry[] entries )
{