mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
[12686] Fixed max player money definition
This commit is contained in:
parent
49bcd5a4ad
commit
0a448519fa
2 changed files with 2 additions and 2 deletions
|
|
@ -855,7 +855,7 @@ enum ReputationSource
|
||||||
|
|
||||||
// Player summoning auto-decline time (in secs)
|
// Player summoning auto-decline time (in secs)
|
||||||
#define MAX_PLAYER_SUMMON_DELAY (2*MINUTE)
|
#define MAX_PLAYER_SUMMON_DELAY (2*MINUTE)
|
||||||
#define MAX_MONEY_AMOUNT (9999999999) // from wowpedia
|
#define MAX_MONEY_AMOUNT (UI64LIT(9999999999)) // from wowpedia
|
||||||
|
|
||||||
struct InstancePlayerBind
|
struct InstancePlayerBind
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "12685"
|
#define REVISION_NR "12686"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue