Skip to content

Commit

Permalink
Updated DBCTool -- Provide more information to the user as to what th…
Browse files Browse the repository at this point in the history
…ey should do. Removed an exception from the registry lookup for WoW installation location since this will break other code -- what reason was there for an exception in this code?
  • Loading branch information
jaddie committed Sep 24, 2017
1 parent 122954e commit 1eaa21c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Utilities/WCell.MPQTool/DBCTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public void Dump(string wowDir, bool clear, bool checkClient)
}
else
{
Console.WriteLine("Could not find a valid WoW installation - Please enter the path manually.");
Console.WriteLine("Could not find a valid WoW installation - Please type y and press enter to provide the path manually or nothing to close immediately");
}
response = Console.ReadLine();
if (response == null)
Expand Down Expand Up @@ -436,7 +436,7 @@ private static bool LookInRegistry()
return true;
}

throw new Exception("Could not find any WoW installation.");
//throw new Exception("Could not find any WoW installation.");
}
return false;
}
Expand Down

0 comments on commit 1eaa21c

Please sign in to comment.