Core/PacketIO: Renamed a bunch of opcodes based on more research (only those added after 6.0)

Port From (https://github.com/TrinityCore/TrinityCore/commit/f922c6e7a46a7c712daaaef9b1a72ca865fbe94b)
This commit is contained in:
hondacrx
2020-09-22 20:05:58 -04:00
parent 184915abc2
commit d40c2938a3
65 changed files with 552 additions and 527 deletions
@@ -618,9 +618,9 @@ namespace Game.Networking.Packets
public ObjectGuid[] GemItem = new ObjectGuid[ItemConst.MaxGemSockets];
}
class SocketGemsResult : ServerPacket
class SocketGemsSuccess : ServerPacket
{
public SocketGemsResult() : base(ServerOpcodes.SocketGems, ConnectionType.Instance) { }
public SocketGemsSuccess() : base(ServerOpcodes.SocketGemsSuccess, ConnectionType.Instance) { }
public override void Write()
{
@@ -651,9 +651,9 @@ namespace Game.Networking.Packets
public override void Read() { }
}
class SortBagsResult : ServerPacket
class BagCleanupFinished : ServerPacket
{
public SortBagsResult() : base(ServerOpcodes.SortBagsResult, ConnectionType.Instance) { }
public BagCleanupFinished() : base(ServerOpcodes.BagCleanupFinished, ConnectionType.Instance) { }
public override void Write() { }
}
@@ -670,9 +670,9 @@ namespace Game.Networking.Packets
public ObjectGuid ItemGuid { get; set; }
}
class CharacterInventoryOverflowWarning : ServerPacket
class InventoryFullOverflow : ServerPacket
{
public CharacterInventoryOverflowWarning() : base(ServerOpcodes.CharacterInventoryOverflowWarning) { }
public InventoryFullOverflow() : base(ServerOpcodes.InventoryFullOverflow) { }
public override void Write() { }
}