Skip to content

Commit

Permalink
Update minecraft/src/main/java/net/fabricmc/loader/impl/game/minecraf…
Browse files Browse the repository at this point in the history
…t/McVersionLookup.java

Co-authored-by: modmuss <[email protected]>
  • Loading branch information
WinPlay02 and modmuss50 authored Aug 15, 2024
1 parent 72d7db5 commit b7c6e91
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ protected static String getRelease(String version) {

if (year >= 24 && week >= 33) {
return "1.21.2";
} else if (year >= 24 && week >= 18 && week <= 21) {
} else if (year == 24 && week >= 18 && week <= 21) {
return "1.21";
} else if (year == 23 && week >= 51 || year == 24 && week <= 14) {
return "1.20.5";
Expand Down

0 comments on commit b7c6e91

Please sign in to comment.