diff options
author | Anubisss <none@none> | 2009-08-17 01:14:30 +0200 |
---|---|---|
committer | Anubisss <none@none> | 2009-08-17 01:14:30 +0200 |
commit | 5764feb2cfa68059c642fd581be4fa299c719fae (patch) | |
tree | eaf429ec3d305a7355c737377fc76d8630c4f5dd /src | |
parent | 48e699745399ab4cd1fffa6fb2b66493807fb5c8 (diff) |
*Fix a typo. By Necroo.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/Player.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Player.cpp b/src/game/Player.cpp index 1bc545e628e..c1271395838 100644 --- a/src/game/Player.cpp +++ b/src/game/Player.cpp @@ -6095,7 +6095,7 @@ int32 Player::CalculateReputationGain(uint32 creatureOrQuestLevel, int32 rep, in if (percent <= 0.0f) return 0; - return int32(rep*percent)/100; + return int32(rep*percent/100); } //Calculates how many reputation points player gains in victim's enemy factions |