| 1184 | } |
| 1185 | |
| 1186 | std::shared_ptr<ModFolderModel> MinecraftInstance::coreModList() |
| 1187 | { |
| 1188 | if (!m_core_mod_list) { |
| 1189 | bool is_indexed = !APPLICATION->settings()->get("ModMetadataDisabled").toBool(); |
| 1190 | m_core_mod_list.reset(new ModFolderModel(coreModsDir(), this, is_indexed)); |
| 1191 | } |
| 1192 | return m_core_mod_list; |
| 1193 | } |
| 1194 | |
| 1195 | std::shared_ptr<ModFolderModel> MinecraftInstance::nilModList() |
| 1196 | { |
no test coverage detected