Fix trying to close the screen during error.
This commit is contained in:
parent
794ff1d1b4
commit
4e6aa905f0
2 changed files with 7 additions and 3 deletions
|
@ -394,10 +394,10 @@ public class FMLClientHandler implements IFMLSidedHandler
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loader.instance().loadingComplete();
|
||||||
|
SplashProgress.finish();
|
||||||
}
|
}
|
||||||
logMissingTextureErrors();
|
logMissingTextureErrors();
|
||||||
Loader.instance().loadingComplete();
|
|
||||||
SplashProgress.finish();
|
|
||||||
}
|
}
|
||||||
/**
|
/**
|
||||||
* Get the server instance
|
* Get the server instance
|
||||||
|
@ -921,6 +921,10 @@ public class FMLClientHandler implements IFMLSidedHandler
|
||||||
|
|
||||||
public void logMissingTextureErrors()
|
public void logMissingTextureErrors()
|
||||||
{
|
{
|
||||||
|
if (missingTextures.isEmpty() && brokenTextures.isEmpty())
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
Logger logger = LogManager.getLogger("TEXTURE ERRORS");
|
Logger logger = LogManager.getLogger("TEXTURE ERRORS");
|
||||||
logger.error(Strings.repeat("+=", 25));
|
logger.error(Strings.repeat("+=", 25));
|
||||||
logger.error("The following texture errors were found.");
|
logger.error("The following texture errors were found.");
|
||||||
|
|
|
@ -58,6 +58,6 @@ public class GuiModsMissing extends GuiErrorScreen
|
||||||
this.drawCenteredString(this.fontRendererObj, String.format("%s : %s", v.getLabel(), v.getRangeString()), this.width / 2, offset, 0xEEEEEE);
|
this.drawCenteredString(this.fontRendererObj, String.format("%s : %s", v.getLabel(), v.getRangeString()), this.width / 2, offset, 0xEEEEEE);
|
||||||
}
|
}
|
||||||
offset+=20;
|
offset+=20;
|
||||||
this.drawCenteredString(this.fontRendererObj, "The file 'ForgeModLoader-client-0.log' contains more information", this.width / 2, offset, 0xFFFFFF);
|
this.drawCenteredString(this.fontRendererObj, "The file 'logs/fml-client-latest.log' contains more information", this.width / 2, offset, 0xFFFFFF);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue