mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
fix(Protocol18Forge.cs): Version bigger or equal 1.18 is FML3
This commit is contained in:
parent
092854532a
commit
8be66daab1
1 changed files with 1 additions and 1 deletions
|
|
@ -514,7 +514,7 @@ namespace MinecraftClient.Protocol.Handlers
|
||||||
{
|
{
|
||||||
if (ServerMayForceForge(protocolVersion))
|
if (ServerMayForceForge(protocolVersion))
|
||||||
{
|
{
|
||||||
if (protocolVersion > ProtocolHandler.MCVer2ProtocolVersion("1.18"))
|
if (protocolVersion >= ProtocolHandler.MCVer2ProtocolVersion("1.18"))
|
||||||
{
|
{
|
||||||
return new ForgeInfo(FMLVersion.FML3);
|
return new ForgeInfo(FMLVersion.FML3);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue