Make type library work case insensitive.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-02-08 17:50:27 +01:00
parent 925763752f
commit 52d24922ff
2 changed files with 10 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ namespace CreatureLib::Library {
void LoadSpecies(const std::string& name, const CreatureSpecies* species);
void DeleteSpecies(const std::string& name);
size_t GetCount() const { return _species.count(); }
size_t GetCount() const { return _species.size(); }
};
}