summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-27 17:32:22 +0000
committerdploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-27 17:32:22 +0000
commitf7eda5bc39c5971efb204d29b2bf155eda36ce26 (patch)
tree422597541f1208cba6e455caade2d937130c6e06 /crawl-ref/source
parentf35c0d8ae40ea8120a04e05a7ac5a8b4d8fa5c6e (diff)
downloadcrawl-ref-f7eda5bc39c5971efb204d29b2bf155eda36ce26.tar.gz
crawl-ref-f7eda5bc39c5971efb204d29b2bf155eda36ce26.zip
Remove superfluous blank lines from card description screens.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9560 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/decks.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 85aed45828..2e5364414c 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -941,7 +941,7 @@ static void _describe_cards(std::vector<card_type> cards)
desc = "No description found.";
name = uppercase_first(name);
- data << "<w>" << name << "</w>" << EOL << desc << EOL EOL;
+ data << "<w>" << name << "</w>" << EOL << desc << EOL;
}
formatted_string fs = formatted_string::parse_string(data.str());
clrscr();