Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Knossos.NET/Classes/Knossos.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ public static async void PlayMod(Mod mod, FsoExecType fsoExecType, bool standalo
}
else
{
await MessageBox.Show(MainWindow.instance!, "This mod does not especifies a engine build to use, you should select one in the mod settings.", "Error launching mod", MessageBox.MessageBoxButtons.OK);
await MessageBox.Show(MainWindow.instance!, "This mod does not specify an engine build to use, you should select one in the mod settings.", "Error launching mod", MessageBox.MessageBoxButtons.OK);
}
}
return;
Expand Down
6 changes: 3 additions & 3 deletions Knossos.NET/ViewModels/TaskViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ await Dispatcher.UIThread.InvokeAsync(async () =>

if (mod.type == ModType.engine)
{
//If this is a engine build call the UI element to do the build install process instead
//If this is an engine build then call the UI element to do the build install process instead
FsoBuildsViewModel.Instance?.RelayInstallBuild(mod);
}
else
Expand Down Expand Up @@ -304,7 +304,7 @@ public async Task CompressMod(Mod mod)
{
if (mod.type == ModType.engine)
{
//If this is a engine build do nothing
//If this is an engine build then do nothing
}
else
{
Expand All @@ -330,7 +330,7 @@ public async Task DecompressMod(Mod mod)
{
if (mod.type == ModType.engine)
{
//If this is a engine build do nothing
//If this is an engine build then do nothing
}
else
{
Expand Down
2 changes: 1 addition & 1 deletion Knossos.NET/ViewModels/Windows/ModInstallViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ private async Task ProcessMod(Mod mod, List<Mod> allMods, List<Mod>? processed =
modCache.Add(modDep);
}

//If this is a engine build check if contains valid executables
//If this is an engine build then check if contains valid executables
if (modDep.type == ModType.engine)
{
//Set a max amount of attempts to get an alternative version in case we need an alternative version
Expand Down