|
From: <gi...@cr...> - 2012-02-29 09:03:25
|
via 2544f3196f6c283864b7ca58b2499bad2e8d225e (commit)
via 9fa986592d2948b298915977bf08456b85312f4a (commit)
from eb127b30c542ba4405abb20af62fe2dd79431ca7 (commit)
-----------------------------------------------------------------------
commit 2544f3196f6c283864b7ca58b2499bad2e8d225e
Author: Eino Keskitalo <ein...@gm...>
Date: Wed Feb 29 10:03:28 2012 +0200
Remove the "You feel responsible" message from Ely protecting your allies.
It appeared randomly (instead of indicating something), and did not provide additional information to the player.
commit 9fa986592d2948b298915977bf08456b85312f4a
Author: Eino Keskitalo <ein...@gm...>
Date: Wed Feb 29 09:08:34 2012 +0200
Remove piety loss from Elyvilon life-saving allies.
It's not in player's hands, so it can be an unwanted piety drain. On the other hand, without piety loss life-saving is a clear perk for ally-users under Elyvilon.
-----------------------------------------------------------------------
Summary of changes:
crawl-ref/source/mon-stuff.cc | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/crawl-ref/source/mon-stuff.cc b/crawl-ref/source/mon-stuff.cc
index 846d79e..d287cfa 100644
--- a/crawl-ref/source/mon-stuff.cc
+++ b/crawl-ref/source/mon-stuff.cc
@@ -771,12 +771,10 @@ static bool _ely_protect_ally(monster* mons, killer_type killer)
mons->hit_points = 1;
- snprintf(info, INFO_SIZE, " protects %s from harm!%s",
- mons->name(DESC_THE).c_str(),
- coinflip() ? "" : " You feel responsible.");
+ snprintf(info, INFO_SIZE, " protects %s from harm!",
+ mons->name(DESC_THE).c_str());
simple_god_message(info);
- lose_piety(1);
return (true);
}
--
Dungeon Crawl Stone Soup
|