From 9d69ea03a92d200d047531e5c288274dcc7a2690 Mon Sep 17 00:00:00 2001 From: Robert Vollmert Date: Sat, 24 Oct 2009 09:57:33 +0200 Subject: Fix Humans not being selectable on character selection. --- crawl-ref/source/species.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/species.cc') diff --git a/crawl-ref/source/species.cc b/crawl-ref/source/species.cc index 02cc3f4c38..cc01bba653 100644 --- a/crawl-ref/source/species.cc +++ b/crawl-ref/source/species.cc @@ -96,7 +96,7 @@ int get_species_index_by_abbrev(const char *abbrev) return (-1); } -int get_species_index_by_name( const char *name ) +int get_species_index_by_name(const char *name) { unsigned int i; int sp = -1; @@ -115,7 +115,7 @@ int get_species_index_by_name( const char *name ) const std::string lowered_species = lowercase_string(species_name(real_sp,1)); - pos = lowered_species.find( lowered_buff ); + pos = lowered_species.find(lowered_buff); if (pos != std::string::npos) { sp = i; -- cgit v1.2.3-54-g00ecf