aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author_manuel_ <manue.l@live.com.ar>2010-04-26 17:52:57 -0300
committer_manuel_ <manue.l@live.com.ar>2010-04-26 17:52:57 -0300
commit31318eabfd3cced297af21af701cc7549c3d440f (patch)
tree2dc34be38eae0b3a34781ba1f4527294c6b32235
parent3c9cb12341077329960b2c7b52eb706298dbe2ac (diff)
Fixed weekly quest reset by Gyullo.
--HG-- branch : trunk
-rw-r--r--src/game/World.cpp2
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;
}
}