Formatting FIxes (#58)

This commit is contained in:
Kamron Batman 2019-10-04 23:08:13 -07:00 committed by GitHub
parent 57fb9fb525
commit 096d39609e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1318 changed files with 11633 additions and 22129 deletions

View file

@ -5,10 +5,7 @@ namespace Server.Items
public class WoodenBench : Item
{
[Constructible]
public WoodenBench() : base(0xB2D)
{
Weight = 6;
}
public WoodenBench() : base(0xB2D) => Weight = 6;
public WoodenBench(Serial serial) : base(serial)
{

View file

@ -5,10 +5,7 @@ namespace Server.Items
public class FancyWoodenChairCushion : Item
{
[Constructible]
public FancyWoodenChairCushion() : base(0xB4F)
{
Weight = 20.0;
}
public FancyWoodenChairCushion() : base(0xB4F) => Weight = 20.0;
public FancyWoodenChairCushion(Serial serial) : base(serial)
{
@ -37,10 +34,7 @@ namespace Server.Items
public class WoodenChairCushion : Item
{
[Constructible]
public WoodenChairCushion() : base(0xB53)
{
Weight = 20.0;
}
public WoodenChairCushion() : base(0xB53) => Weight = 20.0;
public WoodenChairCushion(Serial serial) : base(serial)
{
@ -69,10 +63,7 @@ namespace Server.Items
public class WoodenChair : Item
{
[Constructible]
public WoodenChair() : base(0xB57)
{
Weight = 20.0;
}
public WoodenChair() : base(0xB57) => Weight = 20.0;
public WoodenChair(Serial serial) : base(serial)
{
@ -101,10 +92,7 @@ namespace Server.Items
public class BambooChair : Item
{
[Constructible]
public BambooChair() : base(0xB5B)
{
Weight = 20.0;
}
public BambooChair() : base(0xB5B) => Weight = 20.0;
public BambooChair(Serial serial) : base(serial)
{
@ -133,10 +121,7 @@ namespace Server.Items
public class StoneChair : Item
{
[Constructible]
public StoneChair() : base(0x1218)
{
Weight = 20;
}
public StoneChair() : base(0x1218) => Weight = 20;
public StoneChair(Serial serial) : base(serial)
{
@ -162,10 +147,7 @@ namespace Server.Items
public class OrnateElvenChair : Item
{
[Constructible]
public OrnateElvenChair() : base(0x2DE3)
{
Weight = 1.0;
}
public OrnateElvenChair() : base(0x2DE3) => Weight = 1.0;
public OrnateElvenChair(Serial serial) : base(serial)
{

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class Stool : Item
{
[Constructible]
public Stool() : base(0xA2A)
{
Weight = 10.0;
}
public Stool() : base(0xA2A) => Weight = 10.0;
public Stool(Serial serial) : base(serial)
{
@ -35,10 +32,7 @@ namespace Server.Items
public class FootStool : Item
{
[Constructible]
public FootStool() : base(0xB5E)
{
Weight = 6.0;
}
public FootStool() : base(0xB5E) => Weight = 6.0;
public FootStool(Serial serial) : base(serial)
{

View file

@ -5,10 +5,7 @@ namespace Server.Items
public class Throne : Item
{
[Constructible]
public Throne() : base(0xB33)
{
Weight = 1.0;
}
public Throne() : base(0xB33) => Weight = 1.0;
public Throne(Serial serial) : base(serial)
{
@ -37,10 +34,7 @@ namespace Server.Items
public class WoodenThrone : Item
{
[Constructible]
public WoodenThrone() : base(0xB2E)
{
Weight = 15.0;
}
public WoodenThrone() : base(0xB2E) => Weight = 15.0;
public WoodenThrone(Serial serial) : base(serial)
{