summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/behold.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-06-21 11:07:15 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-06-21 11:07:15 +0200
commitc5a66a46ca0693f3b2ad6e47866b03d772cf34fd (patch)
treeb74be6feedc08ed50f3936d05c2c03b6dca32eeb /crawl-ref/source/behold.cc
parent978f43a9532dfce7c0b00830858e7f03b5ae6a0b (diff)
downloadcrawl-ref-c5a66a46ca0693f3b2ad6e47866b03d772cf34fd.tar.gz
crawl-ref-c5a66a46ca0693f3b2ad6e47866b03d772cf34fd.zip
Remove spaces between function identifiers and arguments lists.
Diffstat (limited to 'crawl-ref/source/behold.cc')
-rw-r--r--crawl-ref/source/behold.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/crawl-ref/source/behold.cc b/crawl-ref/source/behold.cc
index 5bd4af2b10..88fdc843fa 100644
--- a/crawl-ref/source/behold.cc
+++ b/crawl-ref/source/behold.cc
@@ -18,7 +18,7 @@
#include "state.h"
#include "areas.h"
-static bool _mermaid_beholder (const monster* mons)
+static bool _mermaid_beholder(const monster* mons)
{
return (mons_genus(mons->type) == MONS_MERMAID);
}
@@ -36,18 +36,14 @@ void player::add_beholder(const monster* mon, bool axe)
mon->name(DESC_THE).c_str());
}
else
- {
mpr("The melody is strangely muted, and has no effect on you.");
- }
}
else
{
if (you.can_see(mon))
mprf("%s's is no longer quite as mesmerising!", mon->name(DESC_THE).c_str());
else
- {
mpr("Your mesmeriser suddenly seems less interesting!");
- }
}
return;