summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc14
1 files changed, 2 insertions, 12 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index dbdf544dca..14ef2b7f5d 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1810,24 +1810,14 @@ bool bless_follower(monsters *follower,
blessing_done:
- bool see_follower = false;
-
std::string whom = "";
if (!follower)
whom = "you";
else
{
if (mons_near(follower) && player_monster_visible(follower))
- see_follower = true;
-
- if (see_follower)
- {
- if (follower->is_named())
- whom = follower->name(DESC_PLAIN);
- else
- whom = "your " + follower->name(DESC_PLAIN);
- }
- else // cannot see who was blessed
+ whom = follower->name(DESC_NOCAP_THE);
+ else
whom = "a follower";
}