Revert "Fixed some (many) "{ get; set; }""

This reverts commit 8393349316.
This commit is contained in:
Fabian
2017-11-05 22:26:25 +01:00
parent 8ed446ae7a
commit facab2dce6
77 changed files with 3697 additions and 3704 deletions
+7 -7
View File
@@ -21,9 +21,9 @@ namespace Game.Network.Packets
{
public class AutoBankItem : ClientPacket
{
public InvUpdate Inv { get; set; }
public byte Bag { get; set; }
public byte Slot { get; set; }
public InvUpdate Inv;
public byte Bag;
public byte Slot;
public AutoBankItem(WorldPacket packet) : base(packet) { }
@@ -37,9 +37,9 @@ namespace Game.Network.Packets
public class AutoStoreBankItem : ClientPacket
{
public InvUpdate Inv { get; set; }
public byte Bag { get; set; }
public byte Slot { get; set; }
public InvUpdate Inv;
public byte Bag;
public byte Slot;
public AutoStoreBankItem(WorldPacket packet) : base(packet) { }
@@ -60,6 +60,6 @@ namespace Game.Network.Packets
Guid = _worldPacket.ReadPackedGuid();
}
public ObjectGuid Guid { get; set; }
public ObjectGuid Guid;
}
}