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
+11 -11
View File
@@ -29,7 +29,7 @@ namespace Game.Network.Packets
UnkInt = _worldPacket.ReadUInt32();
}
public uint UnkInt { get; set; }
public uint UnkInt;
}
class UpdateListedAuctionableTokensResponse : ServerPacket
@@ -53,16 +53,16 @@ namespace Game.Network.Packets
}
public uint UnkInt; // send CMSG_UPDATE_WOW_TOKEN_AUCTIONABLE_LIST
public TokenResult Result { get; set; }
public TokenResult Result;
List<AuctionableTokenAuctionable> AuctionableTokenAuctionableList =new List<AuctionableTokenAuctionable>();
struct AuctionableTokenAuctionable
{
public ulong UnkInt1 { get; set; }
public uint UnkInt2 { get; set; }
public uint Owner { get; set; }
public ulong BuyoutPrice { get; set; }
public uint EndTime { get; set; }
public ulong UnkInt1;
public uint UnkInt2;
public uint Owner;
public ulong BuyoutPrice;
public uint EndTime;
}
}
@@ -75,7 +75,7 @@ namespace Game.Network.Packets
UnkInt = _worldPacket.ReadUInt32();
}
public uint UnkInt { get; set; }
public uint UnkInt;
}
class WowTokenMarketPriceResponse : ServerPacket
@@ -90,9 +90,9 @@ namespace Game.Network.Packets
_worldPacket.WriteUInt32(UnkInt2);
}
public ulong CurrentMarketPrice { get; set; }
public ulong CurrentMarketPrice;
public uint UnkInt; // send CMSG_REQUEST_WOW_TOKEN_MARKET_PRICE
public TokenResult Result { get; set; }
public uint UnkInt2 { get; set; } = 0;
public TokenResult Result;
public uint UnkInt2 = 0;
}
}