Merge branch 'develop' into icon-indexing
Signed-off-by: Tayou <31988415+TayouVR@users.noreply.github.com>
This commit is contained in:
		| @@ -1356,16 +1356,10 @@ void MainWindow::on_actionExportInstanceFlamePack_triggered() | ||||
|     if (m_selectedInstance) { | ||||
|         auto instance = dynamic_cast<MinecraftInstance*>(m_selectedInstance.get()); | ||||
|         if (instance) { | ||||
|             QString errorMsg; | ||||
|             if (instance->getPackProfile()->getComponent("org.quiltmc.quilt-loader")) { | ||||
|                 errorMsg = tr("Quilt is currently not supported by CurseForge modpacks."); | ||||
|             } else if (auto cmp = instance->getPackProfile()->getComponent("net.minecraft"); | ||||
|                        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); | ||||
|             if (auto cmp = instance->getPackProfile()->getComponent("net.minecraft"); | ||||
|                 cmp && cmp->getVersionFile() && cmp->getVersionFile()->type == "snapshot") { | ||||
|                 QMessageBox msgBox(this); | ||||
|                 msgBox.setText("Snapshots are currently not supported by CurseForge modpacks."); | ||||
|                 msgBox.exec(); | ||||
|                 return; | ||||
|             } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tayou
					Tayou