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 SmallEmptyPot : Item
|
||||
{
|
||||
[Constructible]
|
||||
public SmallEmptyPot() : base(0x11C6)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public SmallEmptyPot() : base(0x11C6) => Weight = 100;
|
||||
|
||||
public SmallEmptyPot(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -30,10 +27,7 @@ namespace Server.Items
|
|||
public class LargeEmptyPot : Item
|
||||
{
|
||||
[Constructible]
|
||||
public LargeEmptyPot() : base(0x11C7)
|
||||
{
|
||||
Weight = 6;
|
||||
}
|
||||
public LargeEmptyPot() : base(0x11C7) => Weight = 6;
|
||||
|
||||
public LargeEmptyPot(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class PottedCactus : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedCactus() : base(0x1E0F)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedCactus() : base(0x1E0F) => Weight = 100;
|
||||
|
||||
public PottedCactus(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -30,10 +27,7 @@ namespace Server.Items
|
|||
public class PottedCactus1 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedCactus1() : base(0x1E10)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedCactus1() : base(0x1E10) => Weight = 100;
|
||||
|
||||
public PottedCactus1(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -57,10 +51,7 @@ namespace Server.Items
|
|||
public class PottedCactus2 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedCactus2() : base(0x1E11)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedCactus2() : base(0x1E11) => Weight = 100;
|
||||
|
||||
public PottedCactus2(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -84,10 +75,7 @@ namespace Server.Items
|
|||
public class PottedCactus3 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedCactus3() : base(0x1E12)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedCactus3() : base(0x1E12) => Weight = 100;
|
||||
|
||||
public PottedCactus3(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -111,10 +99,7 @@ namespace Server.Items
|
|||
public class PottedCactus4 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedCactus4() : base(0x1E13)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedCactus4() : base(0x1E13) => Weight = 100;
|
||||
|
||||
public PottedCactus4(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -138,10 +123,7 @@ namespace Server.Items
|
|||
public class PottedCactus5 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedCactus5() : base(0x1E14)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedCactus5() : base(0x1E14) => Weight = 100;
|
||||
|
||||
public PottedCactus5(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class PottedPlant : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedPlant() : base(0x11CA)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedPlant() : base(0x11CA) => Weight = 100;
|
||||
|
||||
public PottedPlant(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -30,10 +27,7 @@ namespace Server.Items
|
|||
public class PottedPlant1 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedPlant1() : base(0x11CB)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedPlant1() : base(0x11CB) => Weight = 100;
|
||||
|
||||
public PottedPlant1(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -57,10 +51,7 @@ namespace Server.Items
|
|||
public class PottedPlant2 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedPlant2() : base(0x11CC)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedPlant2() : base(0x11CC) => Weight = 100;
|
||||
|
||||
public PottedPlant2(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,10 +3,7 @@ namespace Server.Items
|
|||
public class PottedTree : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedTree() : base(0x11C8)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedTree() : base(0x11C8) => Weight = 100;
|
||||
|
||||
public PottedTree(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
@ -30,10 +27,7 @@ namespace Server.Items
|
|||
public class PottedTree1 : Item
|
||||
{
|
||||
[Constructible]
|
||||
public PottedTree1() : base(0x11C9)
|
||||
{
|
||||
Weight = 100;
|
||||
}
|
||||
public PottedTree1() : base(0x11C9) => Weight = 100;
|
||||
|
||||
public PottedTree1(Serial serial) : base(serial)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue