summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/monstuff.cc4
-rw-r--r--crawl-ref/source/religion.cc9
2 files changed, 7 insertions, 6 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 6fefb4d5d7..6cf17439f7 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -499,7 +499,7 @@ static bool _ely_protects_ally(monsters *monster)
{
return (false);
}
-
+
monster->hit_points = 1;
snprintf(info, INFO_SIZE, " protects %s%s from harm!%s",
mons_is_unique(monster->type) ? "" : "your ",
@@ -507,7 +507,7 @@ static bool _ely_protects_ally(monsters *monster)
coinflip() ? "" : " You feel responsible.");
simple_god_message(info);
lose_piety(1);
-
+
return (true);
}
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 00e75b4fc9..7e1ec59f3e 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -1047,8 +1047,8 @@ bool bless_follower(monsters* follower,
mon = &menv[monster];
}
- blessed = (follower && !mons_near(follower)) ? "a follower"
- : mon->name(DESC_NOCAP_A).c_str();
+ blessed = (follower && !mons_near(follower)) ? "your follower"
+ : mon->name(DESC_PLAIN).c_str();
if (chance == 0)
{
@@ -1182,8 +1182,9 @@ bool bless_follower(monsters* follower,
}
blessing_done:
- snprintf(info, INFO_SIZE, " blesses %s with %s.", blessed.c_str(),
- result.c_str());
+ snprintf(info, INFO_SIZE, " blesses %s%s with %s.",
+ mons_is_unique(mon->type) ? "" : "your ",
+ blessed.c_str(), result.c_str());
simple_god_message(info);
return true;