summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-chimera.cc
diff options
context:
space:
mode:
authorPete Hurst <pete@streamuniverse.tv>2013-06-14 12:35:43 +0100
committerPete Hurst <pete@streamuniverse.tv>2013-06-21 18:26:18 +0100
commit06883c5292065760817a4d6ce3c9d85269cbe6c6 (patch)
tree4c2793af2e3a144f36b1823e17268b3ccdfe833e /crawl-ref/source/mon-chimera.cc
parent71f5118625d9b91ac004726017f3c4f73b0a1bee (diff)
downloadcrawl-ref-06883c5292065760817a4d6ce3c9d85269cbe6c6.tar.gz
crawl-ref-06883c5292065760817a4d6ce3c9d85269cbe6c6.zip
Improve chimera descriptions
Comma-separated the short description, and clarified the three-headed situation.
Diffstat (limited to 'crawl-ref/source/mon-chimera.cc')
-rw-r--r--crawl-ref/source/mon-chimera.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-chimera.cc b/crawl-ref/source/mon-chimera.cc
index 18adda7095..032b18e7f8 100644
--- a/crawl-ref/source/mon-chimera.cc
+++ b/crawl-ref/source/mon-chimera.cc
@@ -61,7 +61,7 @@ string monster_info::chimera_part_names() const
ASSERT(chimtype3 > MONS_PROGRAM_BUG && chimtype3 < NUM_MONSTERS);
ostringstream s;
- s << "-" << get_monster_data(chimtype2)->name
- << "-" << get_monster_data(chimtype3)->name;
+ s << ", " << get_monster_data(chimtype2)->name
+ << ", " << get_monster_data(chimtype3)->name;
return s.str();
}