Skip to content

Commit

Permalink
Error reporting problem in new mod generation.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorvinus committed Jul 7, 2015
1 parent 0c37e5c commit 100fdce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StructConverter/NewProject.cs
Expand Up @@ -207,7 +207,7 @@ private void splitBackgroundWorker_DoWork(object sender, DoWorkEventArgs e)

if (!Split.DLL(args, out errorMessage))
{
cancellationMessage = string.Format("There was an error splitting {0}.\nThe problem was: {1}\nAborting. Your mod has NOT been successfully generated.\nReport this to #x-hax irc.badnik.net", errorMessage);
cancellationMessage = string.Format("There was an error splitting {0}.\nThe problem was: {1}\nAborting. Your mod has NOT been successfully generated.\nReport this to #x-hax irc.badnik.net", file.Key + "DLL", errorMessage);
splitBackgroundWorker.CancelAsync();
return;
}
Expand Down

0 comments on commit 100fdce

Please sign in to comment.