summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index c334a1e2d2..71bf56135a 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -687,8 +687,7 @@ std::string get_god_likes(god_type which_god, bool verbose)
else
{
text += " likes it when ";
- text += comma_separated_line(likes.begin(), likes.end(),
- ", and ", ", ");
+ text += comma_separated_line(likes.begin(), likes.end());
text += ".";
if (really_likes.size() > 0)
@@ -698,7 +697,7 @@ std::string get_god_likes(god_type which_god, bool verbose)
text += " especially likes it when ";
text += comma_separated_line(really_likes.begin(),
- really_likes.end(), ", and ", ", ");
+ really_likes.end());
text += ".";
}
}