File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,8 @@ export function isApiVersionvalidForMcVersion(apiVersion: string, mcVersion: str
100
100
// Very dumb but idk of a better (easy) way.
101
101
if ( mcVersion . startsWith ( "22w13oneblockatatime" ) ) {
102
102
branch = "22w13oneblockatatime"
103
+ } else if ( mcVersion . startsWith ( "25w" ) ) {
104
+ branch = "1.21.5"
103
105
} else if ( mcVersion . startsWith ( "24w" ) ) {
104
106
branch = "1.21.4"
105
107
} else if ( mcVersion . startsWith ( "23w" ) ) {
@@ -128,6 +130,8 @@ export function isApiVersionvalidForMcVersion(apiVersion: string, mcVersion: str
128
130
branch = "1.20.5"
129
131
} else if ( mcVersion . startsWith ( "1.20.6" ) ) {
130
132
branch = "1.20.6"
133
+ } else if ( mcVersion . startsWith ( "1.21.5" ) ) {
134
+ branch = "1.21.5"
131
135
} else if ( mcVersion . startsWith ( "1.21.4" ) ) {
132
136
branch = "1.21.4"
133
137
} else if ( mcVersion . startsWith ( "1.21.3" ) ) {
You can’t perform that action at this time.
0 commit comments