From cce90fadce5dca04e3000cf488e619975bddd8ae Mon Sep 17 00:00:00 2001 From: zelgadis Date: Sat, 22 Sep 2007 03:12:44 +0000 Subject: Oops, forgot about database case insensitivity again. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2178 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/command.cc | 5 ++++- crawl-ref/source/dat/descript/monsters.txt | 2 +- crawl-ref/source/describe.cc | 5 ++++- 3 files changed, 9 insertions(+), 3 deletions(-) (limited to 'crawl-ref') diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc index bb90b0423c..e8568a1079 100644 --- a/crawl-ref/source/command.cc +++ b/crawl-ref/source/command.cc @@ -909,7 +909,10 @@ static bool find_description() return (false); } - unsigned char symbol = get_monster_data(mon_num)->showchar; + std::string symbol = ""; + symbol += get_monster_data(mon_num)->showchar; + if (isupper(symbol[0])) + symbol = "cap-" + symbol; std::string symbol_prefix = "__"; symbol_prefix += symbol; diff --git a/crawl-ref/source/dat/descript/monsters.txt b/crawl-ref/source/dat/descript/monsters.txt index 72c9b7126c..f896d7c484 100644 --- a/crawl-ref/source/dat/descript/monsters.txt +++ b/crawl-ref/source/dat/descript/monsters.txt @@ -1,5 +1,5 @@ %%%% -__N_suffix +__cap-N_suffix $"The insensible son of Pandu sank down till he reached the Naga kingdom. Nagas, furnished with fangs containing virulent venom, bit him by diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc index c0d50a87e9..f6e1e51e30 100644 --- a/crawl-ref/source/describe.cc +++ b/crawl-ref/source/describe.cc @@ -3595,7 +3595,10 @@ void describe_monsters(monsters& mons) // -peterb 4/14/07 description << getLongDescription(mons.name(DESC_PLAIN)); - unsigned char symbol = get_monster_data(mons.type)->showchar; + std::string symbol = ""; + symbol += get_monster_data(mons.type)->showchar; + if (isupper(symbol[0])) + symbol = "cap-" + symbol; std::string symbol_prefix = "__"; symbol_prefix += symbol; -- cgit v1.2.3-54-g00ecf