Skip to content

Commit

Permalink
Fixed Bad Paths
Browse files Browse the repository at this point in the history
  • Loading branch information
BigSpice committed Jan 24, 2024
1 parent e8bbff6 commit aa0d1d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions VTOL_2.0.0/Pages/Page_Tools.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3620,9 +3620,9 @@ private void NINJA_RP_PAGE_Click(object sender, RoutedEventArgs e)

private void NINJA_RP_INSTALL_Click(object sender, RoutedEventArgs e)
{
if (Directory.Exists(Tools_Dir + @"NINJA_RIP") && File.Exists(Tools_Dir + @"NINJA_RIP\x64" + "NinjaRipper.exe"))
if (Directory.Exists(Tools_Dir + @"NINJA_RIP") && File.Exists(Tools_Dir + @"NINJA_RIP\x64\" + "NinjaRipper.exe"))
{
Start_Exe(Tools_Dir + @"NINJA_RIP\x64" + "NinjaRipper.exe");
Start_Exe(Tools_Dir + @"NINJA_RIP\x64\" + "NinjaRipper.exe");

}
else
Expand Down

0 comments on commit aa0d1d5

Please sign in to comment.