mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +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)
|
||||
{
|
||||
try
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue