Fixed some typos.

Updated quest status enum.
This commit is contained in:
tomrus88 2010-03-31 05:43:14 +04:00
parent d19efbe1e4
commit 646b1a1ea4
3 changed files with 6 additions and 6 deletions

View file

@ -227,9 +227,9 @@ void WorldSession::HandleGroupUninviteGuidOpcode(WorldPacket & recv_data)
{ {
uint64 guid; uint64 guid;
recv_data >> guid; recv_data >> guid;
read_skip<uint8>(); recv_data.read_skip<uint8>();
//can't uninvite yourself // can't uninvite yourself
if(guid == GetPlayer()->GetGUID()) if(guid == GetPlayer()->GetGUID())
{ {
sLog.outError("WorldSession::HandleGroupUninviteGuidOpcode: leader %s(%d) tried to uninvite himself from the group.", GetPlayer()->GetName(), GetPlayer()->GetGUIDLow()); sLog.outError("WorldSession::HandleGroupUninviteGuidOpcode: leader %s(%d) tried to uninvite himself from the group.", GetPlayer()->GetName(), GetPlayer()->GetGUIDLow());

View file

@ -15707,7 +15707,7 @@ void Player::_LoadMails(QueryResult *result)
m->sender = fields[2].GetUInt32(); m->sender = fields[2].GetUInt32();
m->receiver = fields[3].GetUInt32(); m->receiver = fields[3].GetUInt32();
m->subject = fields[4].GetCppString(); m->subject = fields[4].GetCppString();
m->body = fields[5].GetUInt32(); m->body = fields[5].GetCppString();
bool has_items = fields[6].GetBool(); bool has_items = fields[6].GetBool();
m->expire_time = (time_t)fields[7].GetUInt64(); m->expire_time = (time_t)fields[7].GetUInt64();
m->deliver_time = (time_t)fields[8].GetUInt64(); m->deliver_time = (time_t)fields[8].GetUInt64();

View file

@ -107,9 +107,9 @@ enum __QuestGiverStatus
{ {
DIALOG_STATUS_NONE = 0, DIALOG_STATUS_NONE = 0,
DIALOG_STATUS_UNAVAILABLE = 1, DIALOG_STATUS_UNAVAILABLE = 1,
DIALOG_STATUS_CHAT = 2, // 3.1 LowLevelQuest DIALOG_STATUS_LOW_LEVEL_AVAILABLE = 2,
DIALOG_STATUS_UNK1 = 3, // 3.1 LowLevelRepeatableHandin DIALOG_STATUS_LOW_LEVEL_REWARD_REP = 3,
DIALOG_STATUS_UNK2 = 4, // 3.1 LowLevelRepeatableAvailable DIALOG_STATUS_LOW_LEVEL_AVAILABLE_REP = 4,
DIALOG_STATUS_INCOMPLETE = 5, DIALOG_STATUS_INCOMPLETE = 5,
DIALOG_STATUS_REWARD_REP = 6, DIALOG_STATUS_REWARD_REP = 6,
DIALOG_STATUS_AVAILABLE_REP = 7, DIALOG_STATUS_AVAILABLE_REP = 7,