summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/output.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 718547729e..57429b714c 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2077,8 +2077,8 @@ static std::vector<formatted_string> _get_overview_stats()
// Careful about overflow. We erase some of the god's name
// if necessary.
- godpowers = godpowers.substr(0, 29 - prank)
- + " " + std::string(prank, '*');
+ godpowers = godpowers.substr(0, 20)
+ + " [" + std::string(prank, '*') + std::string(6 - prank, '.') + "]";
}
}