summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/status.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-04-27 23:17:37 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-05-07 18:23:25 -0600
commit98c15d38543d289c625c184b8527d0fbf6e64d06 (patch)
treec9aa554765b5f8d8a59fe76e6d4dc114a615113e /crawl-ref/source/status.cc
parent60c85639e64c860bf2b90c3e82209e2390250031 (diff)
downloadcrawl-ref-98c15d38543d289c625c184b8527d0fbf6e64d06.tar.gz
crawl-ref-98c15d38543d289c625c184b8527d0fbf6e64d06.zip
Fix a Gozag message spacing error (MarvinPA).
Diffstat (limited to 'crawl-ref/source/status.cc')
-rw-r--r--crawl-ref/source/status.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/status.cc b/crawl-ref/source/status.cc
index 84effc0342..1510887ab8 100644
--- a/crawl-ref/source/status.cc
+++ b/crawl-ref/source/status.cc
@@ -712,8 +712,8 @@ bool fill_status_info(int status, status_info* inf)
inf->short_text = "gold lust";
inf->long_text =
make_stringf("Your skills are %senhanced by your lust for gold.",
- gold_bonus >= 5 ? "greatly" :
- gold_bonus < 3 ? "slightly" : "");
+ gold_bonus >= 5 ? "greatly " :
+ gold_bonus < 3 ? "slightly " : "");
break;
}