summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-31 17:12:18 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-31 17:12:18 +0000
commitfc0189b9d52786409f3007a337dfc86939821de7 (patch)
tree57ece41a90b075dbd8b84a83c20b7901ad411e32 /crawl-ref/source
parent1d225a2a5166b9caeb31c3866b7a83d79c7eb5b1 (diff)
downloadcrawl-ref-fc0189b9d52786409f3007a337dfc86939821de7.tar.gz
crawl-ref-fc0189b9d52786409f3007a337dfc86939821de7.zip
Trunk->0.5 merge (10470): Fix bogus gold numbers being written to logfile (oops)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.5@10471 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/hiscores.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/hiscores.cc b/crawl-ref/source/hiscores.cc
index 1c57caa168..2a41ed332d 100644
--- a/crawl-ref/source/hiscores.cc
+++ b/crawl-ref/source/hiscores.cc
@@ -523,6 +523,9 @@ void scorefile_entry::init_from(const scorefile_entry &se)
num_runes = se.num_runes;
kills = se.kills;
maxed_skills = se.maxed_skills;
+ gold = se.gold;
+ gold_spent = se.gold_spent;
+ gold_found = se.gold_found;
}
bool scorefile_entry::parse(const std::string &line)