Skip to content

Commit

Permalink
Implemented 1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
milutinke committed Jun 22, 2023
1 parent 3f3f614 commit 7c7b58e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MinecraftClient/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ static class Program

public const string Version = MCHighestVersion;
public const string MCLowestVersion = "1.4.6";
public const string MCHighestVersion = "1.20";
public const string MCHighestVersion = "1.20.1";
public static readonly string? BuildInfo = null;

private static Tuple<Thread, CancellationTokenSource>? offlinePrompt = null;
Expand Down
1 change: 1 addition & 0 deletions MinecraftClient/Protocol/ProtocolHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ public static int MCVer2ProtocolVersion(string MCVersion)
case "1.19.4":
return 762;
case "1.20":
case "1.20.1":
return 763;
default:
return 0;
Expand Down

0 comments on commit 7c7b58e

Please sign in to comment.