Skip to content

Commit

Permalink
Fix Mod Manager setup wizard showing SteamAPI trick page on non steam…
Browse files Browse the repository at this point in the history
… versions after updating openkh
  • Loading branch information
shananas committed Jan 11, 2025
1 parent 8f87027 commit 81e3238
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions OpenKh.Tools.ModsManager/ViewModels/SetupWizardViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,14 @@ bool IsEqual(byte[] left, byte[] right)
public SetupWizardViewModel()
{
IsNotExtracting = true;
if (ConfigurationService.PCVersion == "Steam")
{
WizardPageAfterLuaBackend = PageSteamAPITrick;
}
else
{
WizardPageAfterLuaBackend = PageGameData;
}
SelectIsoCommand = new RelayCommand(_ =>
FileDialog.OnOpen(fileName => IsoLocation = fileName, _isoFilter));
SelectOpenKhGameEngineCommand = new RelayCommand(_ =>
Expand Down

0 comments on commit 81e3238

Please sign in to comment.