diff options
-rw-r--r-- | src/game/World.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/World.cpp b/src/game/World.cpp index 5fc5f416a67..71618582329 100644 --- a/src/game/World.cpp +++ b/src/game/World.cpp @@ -2512,7 +2512,7 @@ void World::InitWeeklyQuestResetTime() // move to just before if need time_t cur = time(NULL); if (m_NextWeeklyQuestReset < cur) - m_NextWeeklyQuestReset += WEEK * ((cur - m_NextWeeklyQuestReset) / WEEK); + m_NextWeeklyQuestReset += WEEK; } } |