Move Resource refreshing until affter postInit.

This commit is contained in:
LexManos 2013-07-03 22:29:10 -07:00
parent a1db21a601
commit d04480b8b0
1 changed files with 2 additions and 3 deletions

View File

@ -170,8 +170,6 @@ public class FMLClientHandler implements IFMLSidedHandler
try
{
Loader.instance().loadMods();
// Reload resources
client.func_110436_a();
}
catch (WrongMinecraftVersionException wrong)
{
@ -234,7 +232,8 @@ public class FMLClientHandler implements IFMLSidedHandler
haltGame("There was a severe problem during mod loading that has caused the game to fail", le);
return;
}
LanguageRegistry.reloadLanguageTable();
// Reload resources
client.func_110436_a();
RenderingRegistry.instance().loadEntityRenderers((Map<Class<? extends Entity>, Render>)RenderManager.field_78727_a.field_78729_o);
loading = false;