Skip to content

Commit 7bd9225

Browse files
committed
Restrict maximum Minecraft version to 1.20.4
1 parent 4724fbf commit 7bd9225

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

platforms/fabric/src/main/resources/fabric.mod.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,13 @@
2727
},
2828
"depends": {
2929
"fabricloader": ">=0.15.0",
30-
"minecraft": ">=1.20.0",
30+
"minecraft": [
31+
"=1.20.0",
32+
"=1.20.1",
33+
"=1.20.2",
34+
"=1.20.3",
35+
"=1.20.4"
36+
],
3137
"mixinextras": ">=0.3.2",
3238
"fabric-resource-loader-v0": "*",
3339
"fabric-lifecycle-events-v1": "*"

platforms/forge/src/main/resources/META-INF/mods.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ file="META-INF/accesstransformer.cfg"
2626
[[dependencies.dynamic_fps]]
2727
modId = "minecraft"
2828
mandatory = true
29-
versionRange = "[1.20.0,)"
29+
versionRange = "[1.20.0,1.20.4]"
3030
ordering = "NONE"
3131
side = "CLIENT"
3232

platforms/neoforge/src/main/resources/META-INF/mods.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ file="META-INF/accesstransformer.cfg"
2626
[[dependencies.dynamic_fps]]
2727
modId = "minecraft"
2828
mandatory = true
29-
versionRange = "[1.20.0,)"
29+
versionRange = "[1.20.0,1.20.4]"
3030
ordering = "NONE"
3131
side = "CLIENT"
3232

platforms/quilt/src/main/resources/quilt.mod.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@
4040
},
4141
{
4242
"id": "minecraft",
43-
"versions": ">=1.20.0"
43+
"versions": {
44+
"all": [">=1.20.0", "<=1.20.4"]
45+
}
4446
},
4547
{
4648
"id": "mixinextras",

0 commit comments

Comments
 (0)