diff options
author | Tayou <31988415+TayouVR@users.noreply.github.com> | 2023-06-07 18:57:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-07 18:57:46 +0200 |
commit | 9b9d439fce9408712a594bb294e3bd5f108e31bc (patch) | |
tree | 7a5d4ab7647433f2dd51aef5f7400e22a09fa166 /launcher/ui | |
parent | 62d1bc87aececcc365fe24d19e9160d78cbb891b (diff) | |
parent | 1043d29dd5b399991ed7055df5a1eced982f4c4c (diff) | |
download | PrismLauncher-9b9d439fce9408712a594bb294e3bd5f108e31bc.tar.gz PrismLauncher-9b9d439fce9408712a594bb294e3bd5f108e31bc.tar.bz2 PrismLauncher-9b9d439fce9408712a594bb294e3bd5f108e31bc.zip |
Merge pull request #1111 from Trial97/requires
Diffstat (limited to 'launcher/ui')
-rw-r--r-- | launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp b/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp index f5f50cae..3d2d568a 100644 --- a/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp +++ b/launcher/ui/pages/modplatform/atlauncher/AtlUserInteractionSupportImpl.cpp @@ -68,7 +68,7 @@ QString AtlUserInteractionSupportImpl::chooseVersion(Meta::VersionList::Ptr vlis // select recommended build for (int i = 0; i < vlist->versions().size(); i++) { auto version = vlist->versions().at(i); - auto reqs = version->requires(); + auto reqs = version->requiredSet(); // filter by minecraft version, if the loader depends on a certain version. if (minecraftVersion != nullptr) { |