Skip to content

Commit

Permalink
Better Arbiter existence check
Browse files Browse the repository at this point in the history
  • Loading branch information
Marlamin committed Aug 16, 2024
1 parent 95e2156 commit e8158c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MapUpconverterGUI/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,9 @@ private void EpsilonDirButton_Click(object sender, RoutedEventArgs e)
{
var folderName = folderDialog.FolderName;

if (!File.Exists(Path.Combine(folderName, "Epsilon.exe")) && !File.Exists(Path.Combine(folderName, "_retail_", "Arctium WoW Launcher.exe")))
if (!File.Exists(Path.Combine(folderName, "Epsilon.exe")) && !File.Exists(Path.Combine(folderName, "_retail_", "arbiterdll.dll")))
{
MessageBox.Show("Epsilon.exe and/or launcher not found in this folder, please select the correct folder.", "Error", MessageBoxButton.OK, MessageBoxImage.Warning);
MessageBox.Show("Epsilon.exe and/or Arbiter not found, please select the correct folder.", "Error", MessageBoxButton.OK, MessageBoxImage.Warning);
EpsilonDir.Text = "";
}
else
Expand Down

0 comments on commit e8158c3

Please sign in to comment.