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 AssassinSpike : BaseKnife
{
[Constructible]
public AssassinSpike() : base(0x2D21)
{
Weight = 4.0;
}
public AssassinSpike() : base(0x2D21) => Weight = 4.0;
public AssassinSpike(Serial serial) : base(serial)
{

View file

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

View file

@ -6,10 +6,7 @@ namespace Server.Items
public class ElvenCompositeLongbow : BaseRanged
{
[Constructible]
public ElvenCompositeLongbow() : base(0x2D1E)
{
Weight = 8.0;
}
public ElvenCompositeLongbow() : base(0x2D1E) => Weight = 8.0;
public ElvenCompositeLongbow(Serial serial) : base(serial)
{

View file

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

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class Leafblade : BaseKnife
{
[Constructible]
public Leafblade() : base(0x2D22)
{
Weight = 8.0;
}
public Leafblade() : base(0x2D22) => Weight = 8.0;
public Leafblade(Serial serial) : base(serial)
{

View file

@ -6,10 +6,7 @@ namespace Server.Items
public class MagicalShortbow : BaseRanged
{
[Constructible]
public MagicalShortbow() : base(0x2D2B)
{
Weight = 6.0;
}
public MagicalShortbow() : base(0x2D2B) => Weight = 6.0;
public MagicalShortbow(Serial serial) : base(serial)
{

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class RadiantScimitar : BaseSword
{
[Constructible]
public RadiantScimitar() : base(0x2D33)
{
Weight = 9.0;
}
public RadiantScimitar() : base(0x2D33) => Weight = 9.0;
public RadiantScimitar(Serial serial) : base(serial)
{

View file

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

View file

@ -4,10 +4,7 @@ namespace Server.Items
public class WildStaff : BaseStaff
{
[Constructible]
public WildStaff() : base(0x2D25)
{
Weight = 8.0;
}
public WildStaff() : base(0x2D25) => Weight = 8.0;
public WildStaff(Serial serial) : base(serial)
{