Formatting FIxes (#58)
This commit is contained in:
parent
57fb9fb525
commit
096d39609e
1318 changed files with 11633 additions and 22129 deletions
|
|
@ -23,10 +23,7 @@ namespace Server.Items
|
|||
private static DateTime WorldStart = new DateTime(1997, 9, 1);
|
||||
|
||||
[Constructible]
|
||||
public Clock(int itemID = 0x104B) : base(itemID)
|
||||
{
|
||||
Weight = 3.0;
|
||||
}
|
||||
public Clock(int itemID = 0x104B) : base(itemID) => Weight = 3.0;
|
||||
|
||||
public Clock(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,9 +4,8 @@ namespace Server.Items
|
|||
{
|
||||
[Constructible]
|
||||
public Globe() : base(0x1047) // It isn't flippable
|
||||
{
|
||||
Weight = 3.0;
|
||||
}
|
||||
=>
|
||||
Weight = 3.0;
|
||||
|
||||
public Globe(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -9,10 +9,7 @@ namespace Server.Items
|
|||
public class Spyglass : Item
|
||||
{
|
||||
[Constructible]
|
||||
public Spyglass() : base(0x14F5)
|
||||
{
|
||||
Weight = 3.0;
|
||||
}
|
||||
public Spyglass() : base(0x14F5) => Weight = 3.0;
|
||||
|
||||
public Spyglass(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,10 +4,7 @@ namespace Server.Items
|
|||
public class Fork : Item
|
||||
{
|
||||
[Constructible]
|
||||
public Fork() : base(0x9F4)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public Fork() : base(0x9F4) => Weight = 1.0;
|
||||
|
||||
public Fork(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -31,10 +28,7 @@ namespace Server.Items
|
|||
public class ForkLeft : Item
|
||||
{
|
||||
[Constructible]
|
||||
public ForkLeft() : base(0x9F4)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public ForkLeft() : base(0x9F4) => Weight = 1.0;
|
||||
|
||||
public ForkLeft(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -58,10 +52,7 @@ namespace Server.Items
|
|||
public class ForkRight : Item
|
||||
{
|
||||
[Constructible]
|
||||
public ForkRight() : base(0x9F5)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public ForkRight() : base(0x9F5) => Weight = 1.0;
|
||||
|
||||
public ForkRight(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -86,10 +77,7 @@ namespace Server.Items
|
|||
public class Spoon : Item
|
||||
{
|
||||
[Constructible]
|
||||
public Spoon() : base(0x9F8)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public Spoon() : base(0x9F8) => Weight = 1.0;
|
||||
|
||||
public Spoon(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -113,10 +101,7 @@ namespace Server.Items
|
|||
public class SpoonLeft : Item
|
||||
{
|
||||
[Constructible]
|
||||
public SpoonLeft() : base(0x9F8)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public SpoonLeft() : base(0x9F8) => Weight = 1.0;
|
||||
|
||||
public SpoonLeft(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -140,10 +125,7 @@ namespace Server.Items
|
|||
public class SpoonRight : Item
|
||||
{
|
||||
[Constructible]
|
||||
public SpoonRight() : base(0x9F9)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public SpoonRight() : base(0x9F9) => Weight = 1.0;
|
||||
|
||||
public SpoonRight(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -168,10 +150,7 @@ namespace Server.Items
|
|||
public class Knife : Item
|
||||
{
|
||||
[Constructible]
|
||||
public Knife() : base(0x9F6)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public Knife() : base(0x9F6) => Weight = 1.0;
|
||||
|
||||
public Knife(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -195,10 +174,7 @@ namespace Server.Items
|
|||
public class KnifeLeft : Item
|
||||
{
|
||||
[Constructible]
|
||||
public KnifeLeft() : base(0x9F6)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public KnifeLeft() : base(0x9F6) => Weight = 1.0;
|
||||
|
||||
public KnifeLeft(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -222,10 +198,7 @@ namespace Server.Items
|
|||
public class KnifeRight : Item
|
||||
{
|
||||
[Constructible]
|
||||
public KnifeRight() : base(0x9F7)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public KnifeRight() : base(0x9F7) => Weight = 1.0;
|
||||
|
||||
public KnifeRight(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -249,10 +222,7 @@ namespace Server.Items
|
|||
public class Plate : Item
|
||||
{
|
||||
[Constructible]
|
||||
public Plate() : base(0x9D7)
|
||||
{
|
||||
Weight = 1.0;
|
||||
}
|
||||
public Plate() : base(0x9D7) => Weight = 1.0;
|
||||
|
||||
public Plate(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue