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 BlackStaff : BaseStaff
{
[Constructible]
public BlackStaff() : base(0xDF0)
{
Weight = 6.0;
}
public BlackStaff() : base(0xDF0) => Weight = 6.0;
public BlackStaff(Serial serial) : base(serial)
{

View file

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

View file

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

View file

@ -10,10 +10,7 @@ namespace Server.Items
public class ShepherdsCrook : BaseStaff
{
[Constructible]
public ShepherdsCrook() : base(0xE81)
{
Weight = 4.0;
}
public ShepherdsCrook() : base(0xE81) => Weight = 4.0;
public ShepherdsCrook(Serial serial) : base(serial)
{
@ -133,10 +130,7 @@ namespace Server.Items
{
private BaseCreature m_Creature;
public InternalTarget(BaseCreature c) : base(10, true, TargetFlags.None)
{
m_Creature = c;
}
public InternalTarget(BaseCreature c) : base(10, true, TargetFlags.None) => m_Creature = c;
protected override void OnTarget(Mobile from, object targ)
{