summaryrefslogtreecommitdiffstats
path: root/api/logic/minecraft/legacy/LegacyInstance.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2016-04-04 00:33:56 +0200
committerPetr Mrázek <peterix@gmail.com>2016-05-15 22:56:14 +0200
commit12413f722de65fc221d2938cb16173be5b7e95d7 (patch)
tree64edb3a2f506424287a6251068713f02b365201c /api/logic/minecraft/legacy/LegacyInstance.cpp
parent5aff10d51d3fa6bc52313681b8e754d6b8f19327 (diff)
downloadMultiMC-12413f722de65fc221d2938cb16173be5b7e95d7.tar
MultiMC-12413f722de65fc221d2938cb16173be5b7e95d7.tar.gz
MultiMC-12413f722de65fc221d2938cb16173be5b7e95d7.tar.lz
MultiMC-12413f722de65fc221d2938cb16173be5b7e95d7.tar.xz
MultiMC-12413f722de65fc221d2938cb16173be5b7e95d7.zip
GH-575 separate legacy jar mod list from mod list
Diffstat (limited to 'api/logic/minecraft/legacy/LegacyInstance.cpp')
-rw-r--r--api/logic/minecraft/legacy/LegacyInstance.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/logic/minecraft/legacy/LegacyInstance.cpp b/api/logic/minecraft/legacy/LegacyInstance.cpp
index c64bcb09..28fd8872 100644
--- a/api/logic/minecraft/legacy/LegacyInstance.cpp
+++ b/api/logic/minecraft/legacy/LegacyInstance.cpp
@@ -20,6 +20,7 @@
#include "LegacyInstance.h"
#include "minecraft/legacy/LegacyUpdate.h"
+#include "minecraft/legacy/LegacyModList.h"
#include "launch/LaunchTask.h"
#include <launch/steps/PostLaunchCommand.h>
#include <launch/steps/Update.h>
@@ -274,11 +275,11 @@ std::shared_ptr<ModList> LegacyInstance::coreModList() const
return core_mod_list;
}
-std::shared_ptr<ModList> LegacyInstance::jarModList() const
+std::shared_ptr<LegacyModList> LegacyInstance::jarModList() const
{
if (!jar_mod_list)
{
- auto list = new ModList(jarModsDir(), modListFile());
+ auto list = new LegacyModList(jarModsDir(), modListFile());
connect(list, SIGNAL(changed()), SLOT(jarModsChanged()));
jar_mod_list.reset(list);
}