diff --git a/src/game/World.cpp b/src/game/World.cpp index d9d0822c9..4a7a877b3 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -1928,7 +1928,7 @@ void World::InitDailyQuestResetTime() if (!result) m_NextDailyQuestReset = time_t(time(NULL)); // game time not yet init else - m_NextWeeklyQuestReset = time_t((*result)[0].GetUInt64()); + m_NextDailyQuestReset = time_t((*result)[0].GetUInt64()); // generate time by config time_t curTime = time(NULL); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index d3fa365df..97041d60c 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "9687" + #define REVISION_NR "9688" #endif // __REVISION_NR_H__