Formatting FIxes (#58)
This commit is contained in:
parent
57fb9fb525
commit
096d39609e
1318 changed files with 11633 additions and 22129 deletions
|
|
@ -30,10 +30,7 @@ namespace Server.Items
|
|||
public class Necklace : BaseNecklace
|
||||
{
|
||||
[Constructible]
|
||||
public Necklace() : base(0x1085)
|
||||
{
|
||||
Weight = 0.1;
|
||||
}
|
||||
public Necklace() : base(0x1085) => Weight = 0.1;
|
||||
|
||||
public Necklace(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -57,10 +54,7 @@ namespace Server.Items
|
|||
public class GoldNecklace : BaseNecklace
|
||||
{
|
||||
[Constructible]
|
||||
public GoldNecklace() : base(0x1088)
|
||||
{
|
||||
Weight = 0.1;
|
||||
}
|
||||
public GoldNecklace() : base(0x1088) => Weight = 0.1;
|
||||
|
||||
public GoldNecklace(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -84,10 +78,7 @@ namespace Server.Items
|
|||
public class GoldBeadNecklace : BaseNecklace
|
||||
{
|
||||
[Constructible]
|
||||
public GoldBeadNecklace() : base(0x1089)
|
||||
{
|
||||
Weight = 0.1;
|
||||
}
|
||||
public GoldBeadNecklace() : base(0x1089) => Weight = 0.1;
|
||||
|
||||
public GoldBeadNecklace(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -112,10 +103,7 @@ namespace Server.Items
|
|||
public class SilverNecklace : BaseNecklace
|
||||
{
|
||||
[Constructible]
|
||||
public SilverNecklace() : base(0x1F08)
|
||||
{
|
||||
Weight = 0.1;
|
||||
}
|
||||
public SilverNecklace() : base(0x1F08) => Weight = 0.1;
|
||||
|
||||
public SilverNecklace(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -139,10 +127,7 @@ namespace Server.Items
|
|||
public class SilverBeadNecklace : BaseNecklace
|
||||
{
|
||||
[Constructible]
|
||||
public SilverBeadNecklace() : base(0x1F05)
|
||||
{
|
||||
Weight = 0.1;
|
||||
}
|
||||
public SilverBeadNecklace() : base(0x1F05) => Weight = 0.1;
|
||||
|
||||
public SilverBeadNecklace(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue