aboutsummaryrefslogtreecommitdiff
path: root/src/game/ReputationMgr.cpp
diff options
context:
space:
mode:
authorKudlaty <none@none>2009-07-26 02:00:35 +0200
committerKudlaty <none@none>2009-07-26 02:00:35 +0200
commit3c046356942193756987dc646b30dcf408a1630f (patch)
tree2b2fecd0d40ba8f82584100e7e3aa39e4b4be65c /src/game/ReputationMgr.cpp
parent9f1118cf0a3c6b08fc6477c1f009187a4b1270af (diff)
Fix build on windows.
Fix command ticket viewname - thx Deadlyskunk for point this fix setlink command group, add missing commands to db - patch by XTElite1 --HG-- branch : trunk
Diffstat (limited to 'src/game/ReputationMgr.cpp')
-rw-r--r--src/game/ReputationMgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ReputationMgr.cpp b/src/game/ReputationMgr.cpp
index 8e6aa511d21..7536fb54f03 100644
--- a/src/game/ReputationMgr.cpp
+++ b/src/game/ReputationMgr.cpp
@@ -255,7 +255,7 @@ bool ReputationMgr::SetOneFactionReputation(FactionEntry const* factionEntry, in
if(incremental)
{
// int32 *= float cause one point loss?
- standing = roundf( (float)standing * sWorld.getRate(RATE_REPUTATION_GAIN) );
+ standing = floor( (float)standing * sWorld.getRate(RATE_REPUTATION_GAIN) + 0.5 );
standing += itr->second.Standing + BaseRep;
}