Revert "Fixed some (many) "{ get; set; }""
This reverts commit 8393349316.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user