GH-2819 mod list filter now also looks at descriptions and authors

This commit is contained in:
Petr Mrázek
2020-01-08 21:12:45 +01:00
parent 8bdff97ac0
commit 355e5e24da
2 changed files with 24 additions and 0 deletions

View File

@ -85,6 +85,10 @@ public:
{
return mods[index];
}
const Mod &at(size_t index) const
{
return mods.at(index);
}
/// Reloads the mod list and returns true if the list changed.
bool update();