summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-11-29 01:20:08 +0100
committerAdam Borowski <kilobyte@angband.pl>2013-11-29 01:22:04 +0100
commitd9be2f7fbd7f6d54ae0c08e50ec18366d531cfb1 (patch)
tree6097b76576b1b8836fce489401229231ff27bb56 /crawl-ref/source/directn.cc
parent97409c24b3e537cc24d29f95664738fded7a08ed (diff)
downloadcrawl-ref-d9be2f7fbd7f6d54ae0c08e50ec18366d531cfb1.tar.gz
crawl-ref-d9be2f7fbd7f6d54ae0c08e50ec18366d531cfb1.zip
Automated brace removal.
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index d57fd2b130..2b75398248 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -948,9 +948,7 @@ bool direction_chooser::move_is_ok() const
if (!cell_see_cell(you.pos(), target(), LOS_NO_TRANS))
{
if (you.see_cell(target()))
- {
mprf(MSGCH_EXAMINE_FILTER, "There's something in the way.");
- }
else
mprf(MSGCH_EXAMINE_FILTER, "Sorry, you can't target what you can't see.");
return false;
@@ -3970,13 +3968,9 @@ static void _describe_cell(const coord_def& where, bool in_range)
if (!mon->visible_to(&you))
{
if (_mon_exposed_in_water(mon))
- {
mprf(MSGCH_EXAMINE_FILTER, "There is a strange disturbance in the water here.");
- }
else if (_mon_exposed_in_cloud(mon))
- {
mprf(MSGCH_EXAMINE_FILTER, "There is a strange disturbance in the cloud here.");
- }
goto look_clouds;
}