Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -36,9 +36,7 @@ namespace Server.Items
|
|||
|
||||
[CommandProperty( AccessLevel.GameMaster )]
|
||||
public override int ItemID {
|
||||
get {
|
||||
return base.ItemID;
|
||||
}
|
||||
get => base.ItemID;
|
||||
set {
|
||||
if ( base.ItemID != value ) {
|
||||
Map facet = ( this.Parent == null ? this.Map : null );
|
||||
|
|
@ -88,10 +86,7 @@ namespace Server.Items
|
|||
}
|
||||
}
|
||||
|
||||
public virtual bool AllowsRelativeDrop
|
||||
{
|
||||
get { return false; }
|
||||
}
|
||||
public virtual bool AllowsRelativeDrop => false;
|
||||
|
||||
public override int GetMaxUpdateRange()
|
||||
{
|
||||
|
|
@ -103,13 +98,7 @@ namespace Server.Items
|
|||
return 22;
|
||||
}
|
||||
|
||||
public virtual MultiComponentList Components
|
||||
{
|
||||
get
|
||||
{
|
||||
return MultiData.GetComponents( ItemID );
|
||||
}
|
||||
}
|
||||
public virtual MultiComponentList Components => MultiData.GetComponents( ItemID );
|
||||
|
||||
public virtual bool Contains( Point2D p )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue