Fixes body expression style.
This commit is contained in:
parent
3f0a72a62f
commit
33f5e77a24
957 changed files with 7424 additions and 15973 deletions
|
|
@ -4,10 +4,7 @@ namespace Server.Items
|
|||
{
|
||||
public class GlassblowingBook : Item
|
||||
{
|
||||
public override string DefaultName
|
||||
{
|
||||
get { return "Crafting Glass With Glassblowing"; }
|
||||
}
|
||||
public override string DefaultName => "Crafting Glass With Glassblowing";
|
||||
|
||||
[Constructible]
|
||||
public GlassblowingBook() : base( 0xFF4 )
|
||||
|
|
|
|||
|
|
@ -4,10 +4,7 @@ namespace Server.Items
|
|||
{
|
||||
public class MasonryBook : Item
|
||||
{
|
||||
public override string DefaultName
|
||||
{
|
||||
get { return "Making Valuables With Stonecrafting"; }
|
||||
}
|
||||
public override string DefaultName => "Making Valuables With Stonecrafting";
|
||||
|
||||
[Constructible]
|
||||
public MasonryBook() : base( 0xFBE )
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ namespace Server.Items
|
|||
[FlippableAttribute( 0x11EA, 0x11EB )]
|
||||
public class Sand : Item, ICommodity
|
||||
{
|
||||
int ICommodity.DescriptionNumber { get { return LabelNumber; } }
|
||||
bool ICommodity.IsDeedable { get { return true; } }
|
||||
int ICommodity.DescriptionNumber => LabelNumber;
|
||||
bool ICommodity.IsDeedable => true;
|
||||
|
||||
public override int LabelNumber => 1044626; // sand
|
||||
|
||||
|
|
|
|||
|
|
@ -4,10 +4,7 @@ namespace Server.Items
|
|||
{
|
||||
public class SandMiningBook : Item
|
||||
{
|
||||
public override string DefaultName
|
||||
{
|
||||
get { return "Find Glass-Quality Sand"; }
|
||||
}
|
||||
public override string DefaultName => "Find Glass-Quality Sand";
|
||||
|
||||
[Constructible]
|
||||
public SandMiningBook() : base( 0xFF4 )
|
||||
|
|
|
|||
|
|
@ -4,10 +4,7 @@ namespace Server.Items
|
|||
{
|
||||
public class StoneMiningBook : Item
|
||||
{
|
||||
public override string DefaultName
|
||||
{
|
||||
get { return "Mining For Quality Stone"; }
|
||||
}
|
||||
public override string DefaultName => "Mining For Quality Stone";
|
||||
|
||||
[Constructible]
|
||||
public StoneMiningBook() : base( 0xFBE )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue