mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-18 16:38:42 +01:00
Core/Packets: corrected heal prediction type field size that was causing too large packets
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
ByteBuffer& operator<<(ByteBuffer& data, WorldPackets::Spells::SpellHealPrediction const& predict)
|
||||
{
|
||||
data << int32(predict.Points);
|
||||
data << int32(predict.Type);
|
||||
data << uint8(predict.Type);
|
||||
if (predict.BeaconGUID.is_initialized())
|
||||
data << predict.BeaconGUID->WriteAsPacked();
|
||||
return data;
|
||||
|
||||
Reference in New Issue
Block a user