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:
@@ -81,9 +81,9 @@ namespace Game.Networking.Packets
|
||||
public ObjectGuid NpcGUID;
|
||||
}
|
||||
|
||||
class ArtifactForgeOpened : ServerPacket
|
||||
class OpenArtifactForge : ServerPacket
|
||||
{
|
||||
public ArtifactForgeOpened() : base(ServerOpcodes.ArtifactForgeOpened) { }
|
||||
public OpenArtifactForge() : base(ServerOpcodes.OpenArtifactForge) { }
|
||||
|
||||
public override void Write()
|
||||
{
|
||||
@@ -95,9 +95,9 @@ namespace Game.Networking.Packets
|
||||
public ObjectGuid ForgeGUID;
|
||||
}
|
||||
|
||||
class ArtifactRespecConfirm : ServerPacket
|
||||
class ArtifactRespecPrompt : ServerPacket
|
||||
{
|
||||
public ArtifactRespecConfirm() : base(ServerOpcodes.ArtifactRespecConfirm) { }
|
||||
public ArtifactRespecPrompt() : base(ServerOpcodes.ArtifactRespecPrompt) { }
|
||||
|
||||
public override void Write()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user