[12686] Fixed max player money definition

This commit is contained in:
sanctum32 2013-10-17 01:06:51 +03:00 committed by Antz
parent 49bcd5a4ad
commit 0a448519fa
2 changed files with 2 additions and 2 deletions

View file

@ -855,7 +855,7 @@ enum ReputationSource
// Player summoning auto-decline time (in secs)
#define MAX_PLAYER_SUMMON_DELAY (2*MINUTE)
#define MAX_MONEY_AMOUNT (9999999999) // from wowpedia
#define MAX_MONEY_AMOUNT (UI64LIT(9999999999)) // from wowpedia
struct InstancePlayerBind
{

View file

@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "12685"
#define REVISION_NR "12686"
#endif // __REVISION_NR_H__