From cf20e276216afcf9f216491cb94d689b7530f033 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Thu, 22 Oct 2009 00:28:00 +0200 Subject: Show god rank as [****..] (abrahamwl). --- crawl-ref/source/output.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/output.cc') 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 _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, '.') + "]"; } } -- cgit v1.2.3-54-g00ecf