aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorQAston <none@none>2009-07-14 01:04:19 +0200
committerQAston <none@none>2009-07-14 01:04:19 +0200
commit9ce979130e89aff8a31944f00089806166ca9f40 (patch)
tree140d1cf37474e4f9ac2d9de2dac57a73a0b9f291 /src
parent6a8527934b651177775c77656dd2a3399a3b6ac0 (diff)
*Fix build.
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/ArenaTeam.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/ArenaTeam.cpp b/src/game/ArenaTeam.cpp
index 09ba572f270..8c7b2c8f89f 100644
--- a/src/game/ArenaTeam.cpp
+++ b/src/game/ArenaTeam.cpp
@@ -500,7 +500,7 @@ uint32 ArenaTeam::GetPoints(uint32 MemberRating)
if(rating<=1500)
// points = (float)1500 * 0.22f + 14.0f;
- points = 344f; // 3.1 change - teams with rating below 1500 get arena points for 1500 rating
+ points = 344.0f; // 3.1 change - teams with rating below 1500 get arena points for 1500 rating
else
points = 1511.26f / (1.0f + 1639.28f * exp(-0.00412f * (float)rating));