mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
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:
parent
e5364566c3
commit
6dd003d04c
1 changed files with 5 additions and 0 deletions
|
|
@ -175,6 +175,11 @@ namespace MinecraftClient
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (forgeInfo != null && !forgeInfo.Mods.Any())
|
||||||
|
{
|
||||||
|
forgeInfo = null;
|
||||||
|
}
|
||||||
|
|
||||||
if (protocolversion != 0)
|
if (protocolversion != 0)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue