summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc13
1 files changed, 2 insertions, 11 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index be4702016d..1664396532 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -1473,17 +1473,8 @@ int move_item_to_player( int obj, int quant_got, bool quiet )
if (!quiet)
{
- if (quant_got == you.gold)
- {
- mprf("You pick up %d gold piece%s.",
- quant_got, (quant_got > 1) ? "s" : "");
- }
- else
- {
- mprf("You pick up %d gold piece%s, bringing you to a "
- "total of %d gold pieces.",
- quant_got, (quant_got > 1) ? "s" : "", you.gold );
- }
+ mprf("You now have %d gold piece%s.",
+ you.gold, (you.gold > 1) ? "s" : "");
}
you.turn_is_over = true;