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);
}
}