From 31318eabfd3cced297af21af701cc7549c3d440f Mon Sep 17 00:00:00 2001 From: _manuel_ Date: Mon, 26 Apr 2010 17:52:57 -0300 Subject: Fixed weekly quest reset by Gyullo. --HG-- branch : trunk --- src/game/World.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; } } -- cgit v1.2.3