Skip to content

Commit

Permalink
Add proxy conversions for 1.20.6 & 1.21.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Moulberry committed Aug 15, 2024
1 parent adfea4b commit 54e780a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,10 @@ private void process(Player player, byte[] message) {
playerVersion = 764; // 1.20.2
} else if (dataVersion <= 3700) {
playerVersion = 765; // 1.20.3 / 1.20.4
} else if (dataVersion <= 3837) {
playerVersion = 766; // 1.20.3 / 1.20.4
} else if (dataVersion <= 3839) {
playerVersion = 766; // 1.20.5 / 1.20.6
} else if (dataVersion <= 3955) {
playerVersion = 767; // 1.21.1
} else {
player.sendMessage(incompatibleWarning.color(NamedTextColor.RED));
return;
Expand Down

0 comments on commit 54e780a

Please sign in to comment.