summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-03 06:02:34 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-03 06:02:34 +0000
commit9e0b75bbafa867ac933be059cef34e292d651de0 (patch)
tree82d5820ea69fed25a2d55e7adcf0afbea2b7e715 /crawl-ref/source/directn.cc
parente4f8f08d639a5e6bc6da38936de042406e8ac833 (diff)
downloadcrawl-ref-9e0b75bbafa867ac933be059cef34e292d651de0.tar.gz
crawl-ref-9e0b75bbafa867ac933be059cef34e292d651de0.zip
Add minor cosmetic fixes. (Yes, the "x" monster description uses the
serial comma, but the logic to describe what the monster has equipped under what circumstances is complicated enough that it's easier to leave it that way for now. Besides, the monster resistances list uses the serial semicolon, and probably for similar reasons.) git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9322 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 365ae58dd3..02178f336b 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -2988,7 +2988,7 @@ static void _describe_monster(const monsters *mon)
// This method is called in two cases:
// a) Monsters coming into view: "An ogre comes into view. It is wielding ..."
-// b) Monster description via 'x': "An ogre, wielding a club and wearing ..."
+// b) Monster description via 'x': "An ogre, wielding a club, and wearing ..."
std::string get_monster_desc(const monsters *mon, bool full_desc,
description_level_type mondtype,
bool print_attitude)
@@ -3021,7 +3021,7 @@ std::string get_monster_desc(const monsters *mon, bool full_desc,
if (!weap.empty())
{
if (full_desc)
- desc += ",";
+ desc += ", ";
desc += weap;
}