Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -5,13 +5,10 @@ namespace Server.Items
|
|||
{
|
||||
public abstract class BaseMagicFish : Item
|
||||
{
|
||||
public virtual int Bonus{ get{ return 0; } }
|
||||
public virtual StatType Type{ get{ return StatType.Str; } }
|
||||
public virtual int Bonus => 0;
|
||||
public virtual StatType Type => StatType.Str;
|
||||
|
||||
public override double DefaultWeight
|
||||
{
|
||||
get { return 1.0; }
|
||||
}
|
||||
public override double DefaultWeight => 1.0;
|
||||
|
||||
public BaseMagicFish( int hue ) : base( 0xDD6 )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue