Formatting FIxes (#58)
This commit is contained in:
parent
57fb9fb525
commit
096d39609e
1318 changed files with 11633 additions and 22129 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue