summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/delay.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-09 15:29:02 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-09 15:29:02 +0000
commit6e568ea6930fccb42471224f219b929d5c297a6b (patch)
tree73ba42d449d24e9219fc404dd230ba7094b35c28 /crawl-ref/source/delay.cc
parentd98c601e03209ca72756dc1f4fb074fc4043447c (diff)
downloadcrawl-ref-6e568ea6930fccb42471224f219b929d5c297a6b.tar.gz
crawl-ref-6e568ea6930fccb42471224f219b929d5c297a6b.zip
Tweak neutrality messages for Zin's Recite.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4952 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/delay.cc')
-rw-r--r--crawl-ref/source/delay.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/delay.cc b/crawl-ref/source/delay.cc
index 0f67ec2f99..7fdfb5d74c 100644
--- a/crawl-ref/source/delay.cc
+++ b/crawl-ref/source/delay.cc
@@ -192,10 +192,11 @@ static int recite_to_monsters(int x, int y, int pow, int unused)
{
if (!mons->add_ench(ENCH_NEUTRAL))
return (0);
+ simple_monster_message(mons, " seems impressed!");
}
else
{
- // permanently neutral, but same message as enchantment
+ // permanently neutral
mons->attitude = ATT_NEUTRAL;
mons->flags |= MF_WAS_NEUTRAL;
@@ -203,8 +204,9 @@ static int recite_to_monsters(int x, int y, int pow, int unused)
unsigned int exp_gain = 0, avail_gain = 0;
gain_exp( exper_value(mons) / 2 + 1, &exp_gain, &avail_gain );
mons->flags |= MF_GOT_HALF_XP;
+
+ simple_monster_message(mons, " seems fully impressed!");
}
- simple_monster_message(mons, " seems impressed!");
}
break;
}