Formatting FIxes (#58)
This commit is contained in:
parent
57fb9fb525
commit
096d39609e
1318 changed files with 11633 additions and 22129 deletions
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class BronzeShield : BaseShield
|
||||
{
|
||||
[Constructible]
|
||||
public BronzeShield() : base(0x1B72)
|
||||
{
|
||||
Weight = 6.0;
|
||||
}
|
||||
public BronzeShield() : base(0x1B72) => Weight = 6.0;
|
||||
|
||||
public BronzeShield(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class Buckler : BaseShield
|
||||
{
|
||||
[Constructible]
|
||||
public Buckler() : base(0x1B73)
|
||||
{
|
||||
Weight = 5.0;
|
||||
}
|
||||
public Buckler() : base(0x1B73) => Weight = 5.0;
|
||||
|
||||
public Buckler(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -44,10 +44,7 @@ namespace Server.Items
|
|||
writer.Write(0); //version
|
||||
}
|
||||
|
||||
public override bool OnEquip(Mobile from)
|
||||
{
|
||||
return Validate(from) && base.OnEquip(from);
|
||||
}
|
||||
public override bool OnEquip(Mobile from) => Validate(from) && base.OnEquip(from);
|
||||
|
||||
public override void OnSingleClick(Mobile from)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class HeaterShield : BaseShield
|
||||
{
|
||||
[Constructible]
|
||||
public HeaterShield() : base(0x1B76)
|
||||
{
|
||||
Weight = 8.0;
|
||||
}
|
||||
public HeaterShield() : base(0x1B76) => Weight = 8.0;
|
||||
|
||||
public HeaterShield(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class MetalKiteShield : BaseShield, IDyable
|
||||
{
|
||||
[Constructible]
|
||||
public MetalKiteShield() : base(0x1B74)
|
||||
{
|
||||
Weight = 7.0;
|
||||
}
|
||||
public MetalKiteShield() : base(0x1B74) => Weight = 7.0;
|
||||
|
||||
public MetalKiteShield(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class MetalShield : BaseShield
|
||||
{
|
||||
[Constructible]
|
||||
public MetalShield() : base(0x1B7B)
|
||||
{
|
||||
Weight = 6.0;
|
||||
}
|
||||
public MetalShield() : base(0x1B7B) => Weight = 6.0;
|
||||
|
||||
public MetalShield(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -47,10 +47,7 @@ namespace Server.Items
|
|||
writer.Write(0); //version
|
||||
}
|
||||
|
||||
public override bool OnEquip(Mobile from)
|
||||
{
|
||||
return Validate(from) && base.OnEquip(from);
|
||||
}
|
||||
public override bool OnEquip(Mobile from) => Validate(from) && base.OnEquip(from);
|
||||
|
||||
public override void OnSingleClick(Mobile from)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class WoodenKiteShield : BaseShield
|
||||
{
|
||||
[Constructible]
|
||||
public WoodenKiteShield() : base(0x1B79)
|
||||
{
|
||||
Weight = 5.0;
|
||||
}
|
||||
public WoodenKiteShield() : base(0x1B79) => Weight = 5.0;
|
||||
|
||||
public WoodenKiteShield(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class WoodenShield : BaseShield
|
||||
{
|
||||
[Constructible]
|
||||
public WoodenShield() : base(0x1B7A)
|
||||
{
|
||||
Weight = 5.0;
|
||||
}
|
||||
public WoodenShield() : base(0x1B7A) => Weight = 5.0;
|
||||
|
||||
public WoodenShield(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue