CalendarHandler: Fix warning.

This commit is contained in:
Gacko
2015-08-05 10:47:16 +02:00
parent bf8dc08f1b
commit ceda5b6169

View File

@@ -333,7 +333,7 @@ void WorldSession::HandleCalendarEventInvite(WorldPackets::Calendar::CalendarEve
return;
}
CalendarInvite invite(sCalendarMgr->GetFreeInviteId(), NULL, inviteeGuid, playerGuid, CALENDAR_DEFAULT_RESPONSE_TIME, CALENDAR_STATUS_INVITED, CALENDAR_RANK_PLAYER, "");
CalendarInvite invite(sCalendarMgr->GetFreeInviteId(), 0L, inviteeGuid, playerGuid, CALENDAR_DEFAULT_RESPONSE_TIME, CALENDAR_STATUS_INVITED, CALENDAR_RANK_PLAYER, "");
sCalendarMgr->SendCalendarEventInvite(invite);
}
}