summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-speak.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2011-12-28 02:43:54 +0100
committerAdam Borowski <kilobyte@angband.pl>2011-12-28 02:43:54 +0100
commit7b3785d07791141787a0eac6137cb5c98e1d210c (patch)
treeeee9a6aa9715f1569fddc102a15f578df2138902 /crawl-ref/source/mon-speak.cc
parent2cf8a18928f1c553efb5dffb1ab5b76b50731370 (diff)
parentefb6b1fd7b0c5027acd6d6ecede9bb34dfbea356 (diff)
downloadcrawl-ref-7b3785d07791141787a0eac6137cb5c98e1d210c.tar.gz
crawl-ref-7b3785d07791141787a0eac6137cb5c98e1d210c.zip
Merge branch 'master' into portal_branches
Diffstat (limited to 'crawl-ref/source/mon-speak.cc')
-rw-r--r--crawl-ref/source/mon-speak.cc16
1 files changed, 1 insertions, 15 deletions
diff --git a/crawl-ref/source/mon-speak.cc b/crawl-ref/source/mon-speak.cc
index 6a0a548658..93e7ca5f98 100644
--- a/crawl-ref/source/mon-speak.cc
+++ b/crawl-ref/source/mon-speak.cc
@@ -824,16 +824,6 @@ bool mons_speaks(monster* mons)
return (false);
}
- if (foe == NULL)
- msg = replace_all(msg, "__YOU_RESIST", "__NOTHING_HAPPENS");
- else if (foe->atype() == ACT_MONSTER)
- {
- if (you.can_see(foe))
- msg = replace_all(msg, "__YOU_RESIST", "@The_monster@ resists.");
- else
- msg = replace_all(msg, "__YOU_RESIST", "__NOTHING_HAPPENS");
- }
-
return (mons_speaks_msg(mons, msg, MSGCH_TALK, silence));
}
@@ -857,7 +847,7 @@ bool mons_speaks_msg(monster* mons, const std::string &msg,
// This function is a little bit of a problem for the message
// channels since some of the messages it generates are "fake"
- // warning to scare the player. In order to accomodate this
+ // warning to scare the player. In order to accommodate this
// intent, we're falsely categorizing various things in the
// function as spells and danger warning... everything else
// just goes into the talk channel -- bwr
@@ -880,10 +870,6 @@ bool mons_speaks_msg(monster* mons, const std::string &msg,
// Except for VISUAL, none of the above influence these.
if (msg_type == MSGCH_TALK_VISUAL)
silence = false;
- if (line == "__YOU_RESIST" && !silence)
- canned_msg(MSG_YOU_RESIST);
- else if (line == "__NOTHING_HAPPENS" && !silence)
- canned_msg(MSG_NOTHING_HAPPENS);
else if (line == "__MORE" && !silence)
more();
else if (msg_type == MSGCH_TALK_VISUAL && !you.can_see(mons))