diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-07-11 09:01:07 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-09-20 15:59:43 +0200 |
commit | 09e85e948cdb361c306a1cccbc3557a464366a21 (patch) | |
tree | 9a33804b4370079902d7715ff5bc0c1e539b46e0 /launcher/minecraft/PackProfile.cpp | |
parent | 9ec1c00887579e97c7b7a190756f6ddae583563f (diff) | |
download | PrismLauncher-09e85e948cdb361c306a1cccbc3557a464366a21.tar.gz PrismLauncher-09e85e948cdb361c306a1cccbc3557a464366a21.tar.bz2 PrismLauncher-09e85e948cdb361c306a1cccbc3557a464366a21.zip |
refactor: introduce RuntimeContext
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/minecraft/PackProfile.cpp')
-rw-r--r-- | launcher/minecraft/PackProfile.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/launcher/minecraft/PackProfile.cpp b/launcher/minecraft/PackProfile.cpp index 5e76b892..1618458f 100644 --- a/launcher/minecraft/PackProfile.cpp +++ b/launcher/minecraft/PackProfile.cpp @@ -273,6 +273,11 @@ void PackProfile::scheduleSave() d->m_saveTimer.start(); } +RuntimeContext PackProfile::runtimeContext() +{ + return d->m_instance->runtimeContext(); +} + QString PackProfile::componentsFilePath() const { return FS::PathCombine(d->m_instance->instanceRoot(), "mmc-pack.json"); @@ -784,7 +789,7 @@ bool PackProfile::removeComponent_internal(ComponentPtr patch) return true; } QStringList jar, temp1, temp2, temp3; - jarMod->getApplicableFiles(currentSystem, jar, temp1, temp2, temp3, d->m_instance->jarmodsPath().absolutePath()); + jarMod->getApplicableFiles(d->m_instance->runtimeContext(), jar, temp1, temp2, temp3, d->m_instance->jarmodsPath().absolutePath()); QFileInfo finfo (jar[0]); if(finfo.exists()) { |