From 3f53c9e9b60c17501efe3165552c046809e0a086 Mon Sep 17 00:00:00 2001 From: dolorous Date: Fri, 18 Apr 2008 21:43:45 +0000 Subject: Improve halo-related output again, for the information printed by "@". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4347 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/player.cc | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'crawl-ref') 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) { -- cgit v1.2.3-54-g00ecf