Core: Updated to 11.1.7
Port From (https://github.com/TrinityCore/TrinityCore/commit/ceb8d561b44579118b109a9ff71ba415df53bbdc)
This commit is contained in:
@@ -103,6 +103,22 @@ namespace Game.Networking.Packets
|
||||
public ByteBuffer CompressedData;
|
||||
}
|
||||
|
||||
class UpdateAccountDataComplete : ServerPacket
|
||||
{
|
||||
public ObjectGuid Player;
|
||||
public int DataType; // @see enum AccountDataType
|
||||
public int Result;
|
||||
|
||||
public UpdateAccountDataComplete() : base(ServerOpcodes.UpdateAccountDataComplete, ConnectionType.Realm) { }
|
||||
|
||||
public override void Write()
|
||||
{
|
||||
_worldPacket.WritePackedGuid(Player);
|
||||
_worldPacket.WriteInt32(DataType);
|
||||
_worldPacket.WriteInt32(Result);
|
||||
}
|
||||
}
|
||||
|
||||
class SetAdvancedCombatLogging : ClientPacket
|
||||
{
|
||||
public SetAdvancedCombatLogging(WorldPacket packet) : base(packet) { }
|
||||
|
||||
Reference in New Issue
Block a user