summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-util.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spl-util.cc')
-rw-r--r--crawl-ref/source/spl-util.cc17
1 files changed, 11 insertions, 6 deletions
diff --git a/crawl-ref/source/spl-util.cc b/crawl-ref/source/spl-util.cc
index 9b6f978ebd..f86cc634c9 100644
--- a/crawl-ref/source/spl-util.cc
+++ b/crawl-ref/source/spl-util.cc
@@ -142,24 +142,29 @@ spschool_flag_type school_by_name(std::string name)
short_match = long_match = SPTYP_NONE;
short_matches = long_matches = 0;
+ lowercase(name);
+
for (int i = 0; i <= SPTYP_RANDOM; i++)
{
spschool_flag_type type = (spschool_flag_type) (1 << i);
- const char* short_name = spelltype_short_name(type);
- const char* long_name = spelltype_long_name(type);
+ std::string short_name = spelltype_short_name(type);
+ std::string long_name = spelltype_long_name(type);
+
+ lowercase(short_name);
+ lowercase(long_name);
- if (strcasecmp(short_name, name.c_str()) == 0)
+ if (name == short_name)
return type;
- if (strcasecmp(long_name, name.c_str()) == 0)
+ if (name == long_name)
return type;
- if (strcasestr(short_name, name.c_str()))
+ if (short_name.find(name) != std::string::npos)
{
short_match = type;
short_matches++;
}
- if (strcasestr(long_name, name.c_str()))
+ if (long_name.find(name) != std::string::npos)
{
long_match = type;
long_matches++;