From 62d953c65b657eca6880483b8b4382aba66e45ac Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 1 Jun 2008 01:35:07 +0000 Subject: Lowercase the last of the the miscellaneous names text, and move it out of the randart name database into its own database. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5385 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/misc.cc | 22 ++++------------------ 1 file changed, 4 insertions(+), 18 deletions(-) (limited to 'crawl-ref/source/misc.cc') diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc index efe325b4f5..b80e276fc6 100644 --- a/crawl-ref/source/misc.cc +++ b/crawl-ref/source/misc.cc @@ -2404,38 +2404,24 @@ void new_level(void) #endif } -// XXX: Why the lowercasing? I mean why not list the messages as lowercased -// in the first place? (jpeg) std::string weird_glowing_colour() { - std::string result = getRandNameString("glowing_colour_name"); - - lowercase(result); - - return result; + return getMiscString("glowing_colour_name"); } std::string weird_writing() { - std::string result = getRandNameString("writing_name"); - - lowercase(result); - - return result; + return getMiscString("writing_name"); } std::string weird_roaring_animal() { - std::string result = getRandNameString("roaring_animal_name"); - - lowercase(result); - - return result; + return getMiscString("roaring_animal_name"); } std::string weird_smell() { - return getRandNameString("smell_name"); + return getMiscString("smell_name"); } bool scramble(void) -- cgit v1.2.3-54-g00ecf