summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-08 18:43:27 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-11-08 18:43:27 +0000
commit9036f0293a1311f8164dc5c3cc9009a755a194db (patch)
treeda7531dd36288eab69a253d6bba8e0c06731b545
parent03a9a6865be3addb608f2e6e7be4c06f0ca166e3 (diff)
downloadcrawl-ref-9036f0293a1311f8164dc5c3cc9009a755a194db.tar.gz
crawl-ref-9036f0293a1311f8164dc5c3cc9009a755a194db.zip
Fixed bad space in 'v' description. Not duplicating in trunk because
trunk will want to respace these things anyway. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.3@2826 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/describe.cc19
1 files changed, 9 insertions, 10 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 31fa763aed..34e699fa6d 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1224,31 +1224,30 @@ static std::string describe_weapon( const item_def &item, bool verbose)
const int str_weight = weapon_str_weight( item.base_type, item.sub_type );
if (str_weight >= 8)
- description += "$This weapon is best used by the strong. ";
+ description += "$This weapon is best used by the strong.";
else if (str_weight > 5)
- description += "$This weapon is better for the strong. ";
+ description += "$This weapon is better for the strong.";
else if (str_weight <= 2)
- description += "$This weapon is best used by the dexterous. ";
+ description += "$This weapon is best used by the dexterous.";
else if (str_weight < 5)
- description += "$This weapon is better for the dexterous. ";
-#else
- description += "$";
+ description += "$This weapon is better for the dexterous.";
#endif
+ description += "$";
switch (hands_reqd(item, player_size()))
{
case HANDS_ONE:
- description += " It is a one handed weapon.";
+ description += "It is a one handed weapon.";
break;
case HANDS_HALF:
- description += " It can be used with one hand, or more "
+ description += "It can be used with one hand, or more "
"effectively with two (i.e. when not using a shield).";
break;
case HANDS_TWO:
- description += " It is a two handed weapon.";
+ description += "It is a two handed weapon.";
break;
case HANDS_DOUBLE:
- description += " It is a buggy weapon.";
+ description += "It is a buggy weapon.";
break;
}