From f70d5a22c7efdef6caab5d9ddf433d689e5f0dbc Mon Sep 17 00:00:00 2001 From: megamage Date: Mon, 29 Dec 2008 17:27:50 -0600 Subject: *Update to Mangos 6982. --HG-- branch : trunk --- src/shared/Util.cpp | 10 +++++----- src/shared/revision_nr.h | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src/shared') diff --git a/src/shared/Util.cpp b/src/shared/Util.cpp index a35af77e7f6..33bae61dfbc 100644 --- a/src/shared/Util.cpp +++ b/src/shared/Util.cpp @@ -36,27 +36,27 @@ static MTRandTSS mtRand; int32 irand (int32 min, int32 max) { - return int32 (mtRand.get ().randInt (max - min)) + min; + return int32 (mtRand.get ().randInt (max - min)) + min; } uint32 urand (uint32 min, uint32 max) { - return mtRand.get ().randInt (max - min) + min; + return mtRand.get ().randInt (max - min) + min; } int32 rand32 () { - return mtRand.get ().randInt (); + return mtRand.get ().randInt (); } double rand_norm(void) { - return mtRand.get ().randExc (); + return mtRand.get ().randExc (); } double rand_chance (void) { - return mtRand.get ().randExc (100.0); + return mtRand.get ().randExc (100.0); } Tokens StrSplit(const std::string &src, const std::string &sep) diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 328f7d8c558..ba16411640e 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "6973" + #define REVISION_NR "6982" #endif // __REVISION_NR_H__ -- cgit v1.2.3