summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/hiscores.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-08 20:15:03 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-08 20:15:03 +0000
commit8cbb227becdc172839b901aedf972022dc73118d (patch)
tree0bd26e8356d53ebe455ae21bdc391e7adb79beb9 /crawl-ref/source/hiscores.cc
parent504342b26a04cf2e33cb49b61d721ee483f5c68b (diff)
downloadcrawl-ref-8cbb227becdc172839b901aedf972022dc73118d.tar.gz
crawl-ref-8cbb227becdc172839b901aedf972022dc73118d.zip
Apply a bunch of trunk commits, mostly by Haran, namely:
6766 (partly), 6834 (partly), 6867, 6892, 6903, 6906, 6908, 6909, 6927, 6928, 6929, 6943, 6945, 6946 * Message/description tweaks. * Fix enchanting hides not updating AC. * Fix incorrect score calculation. * All 't' commands now take a turn. * Don't prompt when swapping into dangerous terrain. * Fix backwards stealth check. * Fix off-by-1 error when selecting starting weapon. * Lichform discards holy wrath weapons. * Reinitialise zap counter for recharged wands, mention charges. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@7786 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/hiscores.cc')
-rw-r--r--crawl-ref/source/hiscores.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index 07ce416980..edd1d42afe 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -960,7 +960,7 @@ void scorefile_entry::init()
* + 0.1 * Experience above 3,000,000
* + (distinct Runes +2)^2 * 1000, winners with distinct runes >= 3 only
* + value of Inventory, for winners only
- * + (250,000 * distinct Runes) * (25,000/(turns/rune)), for winners only
+ * + (250,000 * d. runes) * (25,000/(turns/d. runes)), for winners only
*
*/
@@ -1020,7 +1020,7 @@ void scorefile_entry::init()
if (calc_item_values) // winners only
{
points += (250000 * num_diff_runes)
- * ( 25000 * num_diff_runes / (1+you.num_turns) );
+ * ((25000.0 * num_diff_runes) / (1+you.num_turns));
}
// Players will have a hard time getting 1/10 of this (see XP cap):