Core/PacketIO: Fixed SMSG_SPELL_ENERGIZE_LOG structure

This commit is contained in:
Shauren
2024-08-31 18:28:47 +02:00
parent cc7da0c6c8
commit ba90348de8
2 changed files with 2 additions and 2 deletions

View File

@@ -248,7 +248,7 @@ WorldPacket const* SpellEnergizeLog::Write()
*this << CasterGUID;
*this << int32(SpellID);
*this << int32(Type);
*this << int8(Type);
*this << int32(Amount);
*this << int32(OverEnergize);

View File

@@ -187,7 +187,7 @@ namespace WorldPackets
ObjectGuid CasterGUID;
ObjectGuid TargetGUID;
int32 SpellID = 0;
int32 Type = 0;
int8 Type = 0;
int32 Amount = 0;
int32 OverEnergize = 0;
};