Build fix

This commit is contained in:
Shauren
2015-04-04 14:54:02 +02:00
parent 250d85b559
commit e2abc9edf8
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ WorldPacket const* WorldPackets::RaF::ProposeLevelGrant::Write()
WorldPacket const* WorldPackets::RaF::ReferAFriendFailure::Write()
{
_worldPacket << int32(Reason);
// Client uses this sring only if Reason == ERR_REFER_A_FRIEND_NOT_IN_GROUP || Reason == ERR_REFER_A_FRIEND_SUMMON_OFFLINE_S
// Client uses this string only if Reason == ERR_REFER_A_FRIEND_NOT_IN_GROUP || Reason == ERR_REFER_A_FRIEND_SUMMON_OFFLINE_S
// but always reads it from packet
_worldPacket.WriteBits(Str.length(), 6);
_worldPacket.WriteString(Str);

View File

@@ -18,7 +18,7 @@
#ifndef ReferAFriendPackets_h__
#define ReferAFriendPackets_h__
#include "Packets.h"
#include "Packet.h"
#include "ObjectGuid.h"
namespace WorldPackets