[10354] Use time constants instead of hard coded values for STOP_TIME_FOR_PLAYER

Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
NoFantasy 2010-08-13 11:23:12 +02:00
parent 7e70bba865
commit 5d6311da68
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@
#include <set>
#define FLIGHT_TRAVEL_UPDATE 100
#define STOP_TIME_FOR_PLAYER 3 * 60 * 1000 // 3 Minutes
#define STOP_TIME_FOR_PLAYER 3 * MINUTE * IN_MILLISECONDS // 3 Minutes
template<class T, class P>
class MANGOS_DLL_SPEC PathMovementBase

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10353"
#define REVISION_NR "10354"
#endif // __REVISION_NR_H__