Disable Forge when no mods are installed

When no mods are installed, FML client/server will skip mod negociation
phase and act as a vanilla client/server. MCC should do the same else
login will not work properly. See #100 : Forge Support
This commit is contained in:
ORelio 2015-10-29 18:28:46 +01:00
parent e5364566c3
commit 6dd003d04c

View file

@ -175,6 +175,11 @@ namespace MinecraftClient
}
}
if (forgeInfo != null && !forgeInfo.Mods.Any())
{
forgeInfo = null;
}
if (protocolversion != 0)
{
try