summaryrefslogtreecommitdiffstats
path: root/api/logic/minecraft/mod/ModFolderModel.h
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2020-01-08 21:12:45 +0100
committerPetr Mrázek <peterix@gmail.com>2020-01-08 21:12:45 +0100
commit355e5e24da45c69ffa92bfa76c8c40439a107e7c (patch)
treeccd0cd241e7405960790db9629e7724471a3c2e6 /api/logic/minecraft/mod/ModFolderModel.h
parent8bdff97ac0ff39f4a20e7e929b14b70427878b10 (diff)
downloadMultiMC-355e5e24da45c69ffa92bfa76c8c40439a107e7c.tar
MultiMC-355e5e24da45c69ffa92bfa76c8c40439a107e7c.tar.gz
MultiMC-355e5e24da45c69ffa92bfa76c8c40439a107e7c.tar.lz
MultiMC-355e5e24da45c69ffa92bfa76c8c40439a107e7c.tar.xz
MultiMC-355e5e24da45c69ffa92bfa76c8c40439a107e7c.zip
GH-2819 mod list filter now also looks at descriptions and authors
Diffstat (limited to 'api/logic/minecraft/mod/ModFolderModel.h')
-rw-r--r--api/logic/minecraft/mod/ModFolderModel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/api/logic/minecraft/mod/ModFolderModel.h b/api/logic/minecraft/mod/ModFolderModel.h
index 8394e405..03c584a9 100644
--- a/api/logic/minecraft/mod/ModFolderModel.h
+++ b/api/logic/minecraft/mod/ModFolderModel.h
@@ -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();