Merge pull request #1445 from Trial97/curse
feat: removed flame quilt warning
This commit is contained in:
commit
bb039d4bc7
@ -1342,16 +1342,10 @@ void MainWindow::on_actionExportInstanceFlamePack_triggered()
|
|||||||
if (m_selectedInstance) {
|
if (m_selectedInstance) {
|
||||||
auto instance = dynamic_cast<MinecraftInstance*>(m_selectedInstance.get());
|
auto instance = dynamic_cast<MinecraftInstance*>(m_selectedInstance.get());
|
||||||
if (instance) {
|
if (instance) {
|
||||||
QString errorMsg;
|
if (auto cmp = instance->getPackProfile()->getComponent("net.minecraft");
|
||||||
if (instance->getPackProfile()->getComponent("org.quiltmc.quilt-loader")) {
|
cmp && cmp->getVersionFile() && cmp->getVersionFile()->type == "snapshot") {
|
||||||
errorMsg = tr("Quilt is currently not supported by CurseForge modpacks.");
|
QMessageBox msgBox(this);
|
||||||
} else if (auto cmp = instance->getPackProfile()->getComponent("net.minecraft");
|
msgBox.setText("Snapshots are currently not supported by CurseForge modpacks.");
|
||||||
cmp && cmp->getVersionFile() && cmp->getVersionFile()->type == "snapshot") {
|
|
||||||
errorMsg = tr("Snapshots are currently not supported by CurseForge modpacks.");
|
|
||||||
}
|
|
||||||
if (!errorMsg.isEmpty()) {
|
|
||||||
QMessageBox msgBox;
|
|
||||||
msgBox.setText(errorMsg);
|
|
||||||
msgBox.exec();
|
msgBox.exec();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user