Disable signature check of client for now, it's broken.

This commit is contained in:
LexManos 2013-07-09 05:04:11 -07:00
parent 50a8b1cc68
commit 95aa81bb3f

View file

@ -121,7 +121,7 @@ public class FMLSanityChecker implements IFMLCallHook
goodFML = true;
}
boolean goodMC = FMLLaunchHandler.side() == Side.SERVER; //Server is not signed, so assume it's good.
boolean goodMC = true; //Ugh just fucking disable this till cpw fixes it *sleeps* FMLLaunchHandler.side() == Side.SERVER; //Server is not signed, so assume it's good.
try
{
Class cbr = Class.forName("net.minecraft.server.MinecraftServer",false, cl);