summaryrefslogtreecommitdiffstats
path: root/crawl-ref
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
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')
-rw-r--r--crawl-ref/source/arena.cc2
-rw-r--r--crawl-ref/source/monspeak.cc6
2 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc
index df989b32db..530c421532 100644
--- a/crawl-ref/source/arena.cc
+++ b/crawl-ref/source/arena.cc
@@ -783,7 +783,7 @@ namespace arena
{
if (Options.arena_dump_msgs || Options.arena_list_eq)
fprintf(file, "========================================\n");
- fprintf(file, "%d-%d", team_a_wins,
+ fprintf(file, "%d-%d", team_a_wins,
trials_done - team_a_wins - ties);
if (ties > 0)
fprintf(file, "-%d", ties);
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