summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monspeak.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 17:01:12 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-06 17:01:12 +0000
commit05073278bb7731681d0c11ae0517f1c70191c929 (patch)
tree54502502433125156fd192966f35af5fa18fba37 /crawl-ref/source/monspeak.cc
parent6fd898e22140b8d794ad3646d71107eb5eaf6c66 (diff)
downloadcrawl-ref-05073278bb7731681d0c11ae0517f1c70191c929.tar.gz
crawl-ref-05073278bb7731681d0c11ae0517f1c70191c929.zip
Add spacing fixes.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8272 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monspeak.cc')
-rw-r--r--crawl-ref/source/monspeak.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/monspeak.cc b/crawl-ref/source/monspeak.cc
index 3e4c1a60d7..4409912cea 100644
--- a/crawl-ref/source/monspeak.cc
+++ b/crawl-ref/source/monspeak.cc
@@ -169,7 +169,7 @@ static std::string _try_exact_string(const std::vector<std::string> &prefixes,
std::string msg;
for (int tries = 0; tries < 10; tries++)
{
- msg =
+ msg =
__try_exact_string(prefixes, key, ignore_hostile, ignore_related,
ignore_religion, ignore_silenced);
@@ -283,7 +283,7 @@ static std::string _get_speak_string(const std::vector<std::string> &prefixes,
std::string msg;
for (int tries = 0; tries < 10; tries++)
{
- msg =
+ msg =
__get_speak_string(prefixes, key, monster, no_player, no_foe,
no_foe_name, no_god);
@@ -470,7 +470,7 @@ bool mons_speaks(const monsters *monster)
{
if (monster->god == GOD_BEOGH)
prefixes.push_back("beogh");
- else
+ else
prefixes.push_back("unbeliever");
}
else