mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 13:37:05 +00:00
More delimiting
This commit is contained in:
parent
c87d0f93e1
commit
e0ab31c8e5
2 changed files with 2 additions and 2 deletions
|
|
@ -4001,7 +4001,7 @@ void ObjectMgr::LoadQuests()
|
|||
// 80 81 82 83
|
||||
"`ReqCurrencyCount1`, `ReqCurrencyCount1`, `ReqCurrencyCount1`, `ReqCurrencyCount1`,"
|
||||
// 84 85 86 87 88
|
||||
"`ReqSpellCast1`, `ReqSpellCast2`, `ReqSpellCast3`, `ReqSpellCast4`, `ReqSpellLearnedv,"
|
||||
"`ReqSpellCast1`, `ReqSpellCast2`, `ReqSpellCast3`, `ReqSpellCast4`, `ReqSpellLearnedv`,"
|
||||
// 89 90 91 92 93 94
|
||||
"`RewChoiceItemId1`, `RewChoiceItemId2`, `RewChoiceItemId3`, `RewChoiceItemId4`, `RewChoiceItemId5`, `RewChoiceItemId6`,"
|
||||
// 95 96 97 98 99 100
|
||||
|
|
|
|||
|
|
@ -563,7 +563,7 @@ void WorldSession::HandleCalendarEventRsvp(WorldPacket& recv_data)
|
|||
invite->Status = CalendarInviteStatus(status);
|
||||
invite->LastUpdateTime = time(NULL);
|
||||
|
||||
CharacterDatabase.PExecute("UPDATE `calendar_invites` SET `status`=%`u, `lastUpdateTime`=%u WHERE `inviteId` = " UI64FMTD , status, uint32(invite->LastUpdateTime), invite->InviteId);
|
||||
CharacterDatabase.PExecute("UPDATE `calendar_invites` SET `status`=%u, `lastUpdateTime`=%u WHERE `inviteId` = " UI64FMTD , status, uint32(invite->LastUpdateTime), invite->InviteId);
|
||||
sCalendarMgr.SendCalendarEventStatus(invite);
|
||||
sCalendarMgr.SendCalendarClearPendingAction(_player);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue