summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-01-17 22:30:00 -0330
committerDracoOmega <draco_omega@live.com>2014-01-18 00:17:09 -0330
commit327c157312dab4e71948203cb7df2bf4d38be266 (patch)
tree4eccb4c4cad74926e1b137638ce2599c80ec1d03 /crawl-ref/source/directn.cc
parente25714242b04ac28f0ecb15ed916a2f42eb410b8 (diff)
downloadcrawl-ref-327c157312dab4e71948203cb7df2bf4d38be266.tar.gz
crawl-ref-327c157312dab4e71948203cb7df2bf4d38be266.zip
Describe fleeing monsters as 'fleeing' rather than 'retreating'
BEH_FLEE and BEH_RETREAT both existing and being subtly different is bad enough without being inconsistent on top of it (and neither of these is what happens when you command something to retreat, either!)
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index f438dd9b97..f9b2d0aa45 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3505,7 +3505,7 @@ static vector<string> _get_monster_behaviour_vector(const monster_info& mi)
if (mi.is(MB_SLEEPING) || mi.is(MB_DORMANT))
descs.push_back(mi.is(MB_CONFUSED) ? "sleepwalking" : "resting");
else if (mi.is(MB_FLEEING))
- descs.push_back("retreating");
+ descs.push_back("fleeing");
else if (mi.attitude == ATT_HOSTILE && (mi.is(MB_UNAWARE) || mi.is(MB_WANDERING)))
descs.push_back("hasn't noticed you");
@@ -3593,7 +3593,7 @@ static string _get_monster_desc(const monster_info& mi)
}
// Applies to both friendlies and hostiles
else if (mi.is(MB_FLEEING))
- text += pronoun + " is retreating.\n";
+ text += pronoun + " is fleeing.\n";
// hostile with target != you
else if (mi.attitude == ATT_HOSTILE && (mi.is(MB_UNAWARE) || mi.is(MB_WANDERING)))
text += pronoun + " doesn't appear to have noticed you.\n";