mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Mark 1.7.8+ as supported
1.7.8 can be supported without any change. Fix login in MinecraftCom using hardcoded value instead of version
This commit is contained in:
parent
09bff17fc2
commit
3c84c5813e
2 changed files with 2 additions and 2 deletions
|
|
@ -143,7 +143,7 @@ namespace MinecraftClient
|
|||
if (MinecraftCom.GetServerInfo(Settings.ServerIP, ref protocolversion, ref version))
|
||||
{
|
||||
//Supported protocol version ?
|
||||
int[] supportedVersions = { 4 };
|
||||
int[] supportedVersions = { 4, 5 };
|
||||
if (Array.IndexOf(supportedVersions, protocolversion) > -1)
|
||||
{
|
||||
//Load translations (Minecraft 1.6+)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue