Compare commits
1 Commits
fe6d13eb7e
...
e2edf6129d
| Author | SHA1 | Date | |
|---|---|---|---|
|
e2edf6129d
|
@@ -135,7 +135,7 @@ const PkmnLib::Library::PokemonForme* BuildSpecies::BuildForme(const std::string
|
||||
auto s = ab.value().get<std::string>();
|
||||
auto tryAbility = talentLibrary->TryGet(ArbUt::StringView(s.c_str(), s.length()));
|
||||
if (!tryAbility.has_value())
|
||||
THROW("Unknown ability " << s);
|
||||
THROW("Unknown ability ", s);
|
||||
abilities.Append(tryAbility.value());
|
||||
}
|
||||
|
||||
@@ -144,7 +144,7 @@ const PkmnLib::Library::PokemonForme* BuildSpecies::BuildForme(const std::string
|
||||
auto s = ab.value().get<std::string>();
|
||||
auto tryAbility = talentLibrary->TryGet(ArbUt::StringView(s.c_str(), s.length()));
|
||||
if (!tryAbility.has_value())
|
||||
THROW("Unknown ability " << s);
|
||||
THROW("Unknown ability ", s);
|
||||
hiddenAbilities.Append(tryAbility.value());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user