Update opcodes to 7.3.2

This commit is contained in:
hondacrx
2017-11-17 16:56:54 -05:00
parent 39b13bfc84
commit a60fbcdf12
14 changed files with 1130 additions and 1081 deletions
+6 -6
View File
@@ -76,9 +76,9 @@ namespace Game.Network.Packets
public ByteBuffer Data = new ByteBuffer();
}
class HotfixList : ServerPacket
class AvailableHotfixes : ServerPacket
{
public HotfixList(int hotfixCacheVersion, Dictionary<ulong, int> hotfixes) : base(ServerOpcodes.HotfixList)
public AvailableHotfixes(int hotfixCacheVersion, Dictionary<ulong, int> hotfixes) : base(ServerOpcodes.AvailableHotfixes)
{
HotfixCacheVersion = hotfixCacheVersion;
Hotfixes = hotfixes;
@@ -97,9 +97,9 @@ namespace Game.Network.Packets
public Dictionary<ulong, int> Hotfixes = new Dictionary<ulong, int>();
}
class HotfixQuery : ClientPacket
class HotfixRequest : ClientPacket
{
public HotfixQuery(WorldPacket packet) : base(packet) { }
public HotfixRequest(WorldPacket packet) : base(packet) { }
public override void Read()
{
@@ -114,9 +114,9 @@ namespace Game.Network.Packets
public List<ulong> Hotfixes = new List<ulong>();
}
class HotfixQueryResponse : ServerPacket
class HotfixResponse : ServerPacket
{
public HotfixQueryResponse() : base(ServerOpcodes.HotfixQueryResponse) { }
public HotfixResponse() : base(ServerOpcodes.HotfixResponse) { }
public override void Write()
{