Make the exception print for headless servers if the Downloader cant initalize.

This commit is contained in:
LexManos 2012-09-15 18:06:59 -07:00
parent 48d12444c0
commit b404f294c5

View file

@ -64,6 +64,10 @@ public class FMLRelauncher
}
catch (Exception e)
{
if (RelaunchLibraryManager.downloadMonitor == null)
{
e.printStackTrace();
}
popupWindow = null;
RelaunchLibraryManager.downloadMonitor.makeHeadless();
}