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

@ -4,10 +4,7 @@ namespace Server.Items
public class DragonArms : BaseArmor
{
[Constructible]
public DragonArms() : base(0x2657)
{
Weight = 5.0;
}
public DragonArms() : base(0x2657) => Weight = 5.0;
public DragonArms(Serial serial) : base(serial)
{

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class DragonChest : BaseArmor
{
[Constructible]
public DragonChest() : base(0x2641)
{
Weight = 10.0;
}
public DragonChest() : base(0x2641) => Weight = 10.0;
public DragonChest(Serial serial) : base(serial)
{

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class DragonGloves : BaseArmor
{
[Constructible]
public DragonGloves() : base(0x2643)
{
Weight = 2.0;
}
public DragonGloves() : base(0x2643) => Weight = 2.0;
public DragonGloves(Serial serial) : base(serial)
{

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class DragonHelm : BaseArmor
{
[Constructible]
public DragonHelm() : base(0x2645)
{
Weight = 5.0;
}
public DragonHelm() : base(0x2645) => Weight = 5.0;
public DragonHelm(Serial serial) : base(serial)
{

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class DragonLegs : BaseArmor
{
[Constructible]
public DragonLegs() : base(0x2647)
{
Weight = 6.0;
}
public DragonLegs() : base(0x2647) => Weight = 6.0;
public DragonLegs(Serial serial) : base(serial)
{