summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/player.cc')
-rw-r--r--crawl-ref/source/player.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 66a7fab67f..3151449c10 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3660,7 +3660,15 @@ void display_char_status()
mpr( "You are alive." );
if (you.haloed())
- mpr( "You are illuminated by a halo." );
+ {
+ int halo_size = halo_radius();
+ if (halo_size > 6)
+ mpr( "You are illuminated by a large halo." );
+ else if (halo_size > 3)
+ mpr( "You are illuminated by a medium halo." );
+ else
+ mpr( "You are illuminated by a small halo." );
+ }
if (you.species == SP_VAMPIRE)
{