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:
@@ -294,16 +294,16 @@ namespace Game.Networking.Packets
|
||||
public uint MovieID;
|
||||
}
|
||||
|
||||
public class UITimeRequest : ClientPacket
|
||||
public class ServerTimeOffsetRequest : ClientPacket
|
||||
{
|
||||
public UITimeRequest(WorldPacket packet) : base(packet) { }
|
||||
public ServerTimeOffsetRequest(WorldPacket packet) : base(packet) { }
|
||||
|
||||
public override void Read() { }
|
||||
}
|
||||
|
||||
public class UITime : ServerPacket
|
||||
public class ServerTimeOffset : ServerPacket
|
||||
{
|
||||
public UITime() : base(ServerOpcodes.UiTime) { }
|
||||
public ServerTimeOffset() : base(ServerOpcodes.ServerTimeOffset) { }
|
||||
|
||||
public override void Write()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user