Skip to content

Commit

Permalink
Update for 1.20.2+
Browse files Browse the repository at this point in the history
  • Loading branch information
PieKing1215 committed Jan 13, 2024
1 parent 77ec80b commit 62930f9
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ public static void setInstance(InvMove newInstance) {
*/
@SuppressWarnings("unused")
public static void registerModule(Module module) {
System.out.println("[InvMove] Registered Module: " + module);
(instance != null ? instance.modules : addonModules).add(module);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ public class BackgroundMixin {
@Group
@Inject(
method = {
"renderBackground(Lcom/mojang/blaze3d/vertex/PoseStack;)V",
"renderBackground(Lnet/minecraft/client/gui/GuiGraphics;)V"
"renderBackground*"
},
at = @At(value = "HEAD"),
cancellable = true
Expand Down
4 changes: 2 additions & 2 deletions mc1.20/fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
],

"depends": {
"minecraft": ">=1.20",
"minecraft": ">=1.20.2",
"fabric": "*",
"cloth-config": ">=11"
"cloth-config": ">=12"
},
"breaks": {
"invmove_compat": "<=0.1.0"
Expand Down
6 changes: 3 additions & 3 deletions mc1.20/forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ description = '''${description}'''
[[dependencies.invmove]]
modId = "forge"
mandatory = true
versionRange = "[46,)"
versionRange = "[48,)"
ordering = "NONE"
side = "BOTH"

[[dependencies.invmove]]
modId = "minecraft"
mandatory = true
versionRange = "[1.20,)"
versionRange = "[1.20.2,)"
ordering = "NONE"
side = "BOTH"

[[dependencies.invmove]]
modId = "cloth_config"
mandatory = true
versionRange = "[11,)"
versionRange = "[12,)"
ordering = "NONE"
side = "CLIENT"
18 changes: 9 additions & 9 deletions mc1.20/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@

minecraft_version=1.20
minecraft_version=1.20.4
enabled_platforms=quilt,fabric,forge

maven_group=me.pieking1215.invmove.20

architectury_version=9.0.7
cloth_version=11.0.99
modmenu_version=7.0.1
architectury_version=10.0.17
cloth_version=12.0.119
modmenu_version=8.0.1

fabric_loader_version=0.14.21
fabric_api_version=0.83.0+1.20
fabric_loader_version=0.15.3
fabric_api_version=0.91.3+1.20.2

forge_version=1.20-46.0.12
forge_version=1.20.4-49.0.19

quilt_loader_version=0.19.0-beta.18
quilt_fabric_api_version=7.0.1+0.83.0-1.20
quilt_loader_version=0.23.0
quilt_fabric_api_version=7.4.0+0.90.0-1.20.1
4 changes: 2 additions & 2 deletions mc1.20/quilt/src/main/resources/quilt.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@
},
{
"id": "minecraft",
"version": ">=1.20"
"version": ">=1.20.2"
},
{
"id": "cloth-config",
"version": ">=11"
"version": ">=12"
}
],
"breaks": [
Expand Down

0 comments on commit 62930f9

Please sign in to comment.