Fix demo mode crash. Closes #187
This commit is contained in:
parent
d3d4e7683c
commit
72f55cfd08
1 changed files with 1 additions and 1 deletions
|
@ -130,6 +130,7 @@ public class FMLClientHandler implements IFMLSidedHandler
|
|||
*/
|
||||
public void beginMinecraftLoading(Minecraft minecraft)
|
||||
{
|
||||
client = minecraft;
|
||||
if (minecraft.func_71355_q())
|
||||
{
|
||||
FMLLog.severe("DEMO MODE DETECTED, FML will not work. Finishing now.");
|
||||
|
@ -138,7 +139,6 @@ public class FMLClientHandler implements IFMLSidedHandler
|
|||
}
|
||||
|
||||
loading = true;
|
||||
client = minecraft;
|
||||
// TextureFXManager.instance().setClient(client);
|
||||
FMLCommonHandler.instance().beginLoading(this);
|
||||
new ModLoaderClientHelper(client);
|
||||
|
|
Loading…
Reference in a new issue