Upgrades code style - First batch (#22)
This commit is contained in:
parent
8ee42c8ea2
commit
632e8b4757
1834 changed files with 10245 additions and 10437 deletions
|
|
@ -5,7 +5,7 @@ namespace Server.Items
|
|||
{
|
||||
public class LightFlowerTapestryEastAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed{ get{ return new LightFlowerTapestryEastDeed(); } }
|
||||
public override BaseAddonDeed Deed => new LightFlowerTapestryEastDeed();
|
||||
|
||||
[Constructible]
|
||||
public LightFlowerTapestryEastAddon()
|
||||
|
|
@ -35,8 +35,8 @@ namespace Server.Items
|
|||
|
||||
public class LightFlowerTapestryEastDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon{ get{ return new LightFlowerTapestryEastAddon(); } }
|
||||
public override int LabelNumber{ get{ return 1049393; } } // a flower tapestry deed facing east
|
||||
public override BaseAddon Addon => new LightFlowerTapestryEastAddon();
|
||||
public override int LabelNumber => 1049393; // a flower tapestry deed facing east
|
||||
|
||||
[Constructible]
|
||||
public LightFlowerTapestryEastDeed()
|
||||
|
|
@ -64,7 +64,7 @@ namespace Server.Items
|
|||
|
||||
public class LightFlowerTapestrySouthAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed{ get{ return new LightFlowerTapestrySouthDeed(); } }
|
||||
public override BaseAddonDeed Deed => new LightFlowerTapestrySouthDeed();
|
||||
|
||||
[Constructible]
|
||||
public LightFlowerTapestrySouthAddon()
|
||||
|
|
@ -94,8 +94,8 @@ namespace Server.Items
|
|||
|
||||
public class LightFlowerTapestrySouthDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon{ get{ return new LightFlowerTapestrySouthAddon(); } }
|
||||
public override int LabelNumber{ get{ return 1049394; } } // a flower tapestry deed facing south
|
||||
public override BaseAddon Addon => new LightFlowerTapestrySouthAddon();
|
||||
public override int LabelNumber => 1049394; // a flower tapestry deed facing south
|
||||
|
||||
[Constructible]
|
||||
public LightFlowerTapestrySouthDeed()
|
||||
|
|
@ -123,7 +123,7 @@ namespace Server.Items
|
|||
|
||||
public class DarkFlowerTapestryEastAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed{ get{ return new DarkFlowerTapestryEastDeed(); } }
|
||||
public override BaseAddonDeed Deed => new DarkFlowerTapestryEastDeed();
|
||||
|
||||
[Constructible]
|
||||
public DarkFlowerTapestryEastAddon()
|
||||
|
|
@ -153,8 +153,8 @@ namespace Server.Items
|
|||
|
||||
public class DarkFlowerTapestryEastDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon{ get{ return new DarkFlowerTapestryEastAddon(); } }
|
||||
public override int LabelNumber{ get{ return 1049395; } } // a dark flower tapestry deed facing east
|
||||
public override BaseAddon Addon => new DarkFlowerTapestryEastAddon();
|
||||
public override int LabelNumber => 1049395; // a dark flower tapestry deed facing east
|
||||
|
||||
[Constructible]
|
||||
public DarkFlowerTapestryEastDeed()
|
||||
|
|
@ -182,7 +182,7 @@ namespace Server.Items
|
|||
|
||||
public class DarkFlowerTapestrySouthAddon : BaseAddon
|
||||
{
|
||||
public override BaseAddonDeed Deed{ get{ return new DarkFlowerTapestrySouthDeed(); } }
|
||||
public override BaseAddonDeed Deed => new DarkFlowerTapestrySouthDeed();
|
||||
|
||||
[Constructible]
|
||||
public DarkFlowerTapestrySouthAddon()
|
||||
|
|
@ -212,8 +212,8 @@ namespace Server.Items
|
|||
|
||||
public class DarkFlowerTapestrySouthDeed : BaseAddonDeed
|
||||
{
|
||||
public override BaseAddon Addon{ get{ return new DarkFlowerTapestrySouthAddon(); } }
|
||||
public override int LabelNumber{ get{ return 1049396; } } // a dark flower tapestry deed facing south
|
||||
public override BaseAddon Addon => new DarkFlowerTapestrySouthAddon();
|
||||
public override int LabelNumber => 1049396; // a dark flower tapestry deed facing south
|
||||
|
||||
[Constructible]
|
||||
public DarkFlowerTapestrySouthDeed()
|
||||
|
|
@ -238,4 +238,4 @@ namespace Server.Items
|
|||
int version = reader.ReadInt();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue