From 7569bb343a532ca6d080ad48bcb8275b3a182ddb Mon Sep 17 00:00:00 2001 From: QAston Date: Mon, 3 Aug 2009 16:35:33 +0200 Subject: *Add Rate.RepairCost config option - by MaXiMiUS *Apply tc sql coding style to 4737_world_TDB.sql - by Drahy *Fix build with MAP_BASED_RAND_GEN option. --HG-- branch : trunk --- src/game/Object.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/game/Object.h') diff --git a/src/game/Object.h b/src/game/Object.h index e8f9d9aafd7..98103384ac7 100644 --- a/src/game/Object.h +++ b/src/game/Object.h @@ -560,11 +560,11 @@ class TRINITY_DLL_SPEC WorldObject : public Object bool IsTempWorldObject; #ifdef MAP_BASED_RAND_GEN - int32 irand(int32 min, int32 max) const { int32 (GetMap()->mtRand.randInt(max - min)) + min; } - uint32 urand(uint32 min, uint32 max) const { GetMap()->mtRand.randInt(max - min) + min} - int32 rand32() const { GetMap()->mtRand.randInt()} - double rand_norm() const { GetMap()->mtRand.randExc()} - double rand_chance() const { GetMap()->mtRand.randExc(100.0)} + int32 irand(int32 min, int32 max) const { return int32 (GetMap()->mtRand.randInt(max - min)) + min; } + uint32 urand(uint32 min, uint32 max) const { return GetMap()->mtRand.randInt(max - min) + min;} + int32 rand32() const { return GetMap()->mtRand.randInt();} + double rand_norm() const { return GetMap()->mtRand.randExc();} + double rand_chance() const { return GetMap()->mtRand.randExc(100.0);} #endif protected: -- cgit v1.2.3