From 1f413eebdac4697068f538c2c0e7f305bab15f0a Mon Sep 17 00:00:00 2001 From: NorbiPeti Date: Sat, 3 Oct 2020 15:26:05 +0200 Subject: [PATCH] Update version and reword a message --- GCMM/GCMM.csproj | 4 +--- GCMM/MainModInstaller.cs | 6 ++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/GCMM/GCMM.csproj b/GCMM/GCMM.csproj index d5c7ab8..1c92119 100644 --- a/GCMM/GCMM.csproj +++ b/GCMM/GCMM.csproj @@ -6,9 +6,7 @@ true false favicon.ico - 1.2.0.0 - 1.2.0.0 - 1.2.0 + 1.3.0 NorbiPeti ExMods A mod manager for Gamecraft. It automatically downloads and runs GCIPA and allows the user to install mods. diff --git a/GCMM/MainModInstaller.cs b/GCMM/MainModInstaller.cs index ce50ef2..0b74417 100644 --- a/GCMM/MainModInstaller.cs +++ b/GCMM/MainModInstaller.cs @@ -160,8 +160,10 @@ namespace GCMM var gcmapi = mods["GamecraftModdingAPI"]; if (!gcmapi.Installed || gcmapi.Updatable) { - if (MessageBox.Show($"GamecraftModdingAPI will be {(gcmapi.Installed ? "updated" : "installed")} as most mods need it to work. You can uninstall it if you're sure you don't need it.", "API needed", MessageBoxButtons.OKCancel) - == DialogResult.OK) + if (MessageBox.Show(gcmapi.Installed ? + "GamecraftModdingAPI will be updated as there's a new version available. It's needed for most mods to function." + : "GamecraftModdingAPI will be installed as most mods need it to work. You can uninstall it if you're sure you don't need it.", "API needed", + MessageBoxButtons.OKCancel) == DialogResult.OK) await InstallMod(gcmapi); } }