mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/PacketIO: Fix broken CMSG_RESURRECT_RESPONSE structure after 9fe6756cf2
This commit is contained in:
@@ -204,7 +204,7 @@ void WorldPackets::Misc::WorldTeleport::Read()
|
||||
|
||||
WorldPacket const* WorldPackets::Misc::CorpseReclaimDelay::Write()
|
||||
{
|
||||
_worldPacket << Remaining;
|
||||
_worldPacket << uint32(Remaining);
|
||||
|
||||
return &_worldPacket;
|
||||
}
|
||||
|
||||
@@ -358,7 +358,7 @@ namespace WorldPackets
|
||||
class PreRessurect : public ServerPacket
|
||||
{
|
||||
public:
|
||||
PreRessurect() : ServerPacket(SMSG_PRE_RESURRECT, 16) { }
|
||||
PreRessurect() : ServerPacket(SMSG_PRE_RESURRECT, 8) { }
|
||||
|
||||
WorldPacket const* Write() override;
|
||||
|
||||
@@ -393,7 +393,7 @@ namespace WorldPackets
|
||||
void Read() override;
|
||||
|
||||
ObjectGuid Resurrecter;
|
||||
uint32 Response = 0;
|
||||
uint8 Response = 0;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user