mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Fix joining Forge servers without mods (#1189)
Regression from 74151097ff
This commit is contained in:
parent
b4d99eb8a3
commit
294d85d5e1
1 changed files with 5 additions and 1 deletions
|
|
@ -283,7 +283,11 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else ConsoleIO.WriteLineFormatted("§8Server is running Forge without mods.");
|
else
|
||||||
|
{
|
||||||
|
ConsoleIO.WriteLineFormatted("§8Server is running Forge without mods.");
|
||||||
|
forgeInfo = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue