Skip to content

Commit

Permalink
Update to 1.21.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeltumn committed Oct 22, 2024
1 parent f55950b commit 8aefc3b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 18 deletions.
8 changes: 1 addition & 7 deletions fabric/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("fabric-loom") version "1.7-SNAPSHOT"
id("fabric-loom") version "1.8-SNAPSHOT"
}

repositories {
Expand Down Expand Up @@ -36,12 +36,6 @@ dependencies {
api(this)
}

// Use an updated version of mixin extras so we can use WrapMethod
annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.4.1")?.apply {
include(this)
implementation(this)
}

// Add PRTree which we use for collision detection
include("org.khelekore:prtree:1.5")
implementation("org.khelekore:prtree:1.5")
Expand Down
9 changes: 4 additions & 5 deletions fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,12 @@
],
"depends": {
"fabric": "*",
"fabricloader": ">=0.16.5",
"fabric-api": ">=0.106.0",
"minecraft": ">=1.21.2-beta.5"
"fabricloader": ">=0.16.7",
"fabric-api": ">=0.106.1",
"minecraft": ">=1.21.2"
},
"suggests": {
"sodium": ">=0.6.0-beta.1",
"iris": ">=1.8.0-beta.3"
"sodium": ">=0.6.0-beta.3"
},
"breaks": {
"optifabric": "*"
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
org.gradle.jvmargs=-Xmx1G
# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.21.2-pre5
yarn_mappings=1.21.2-pre5+build.2
minecraft_version=1.21.2
yarn_mappings=1.21.2+build.1
loader_version=0.16.7

# Fabric API
fabric_version=0.106.0+1.21.2
fabric_version=0.106.1+1.21.2
# Mod Properties
mod_version=2.4.0-SNAPSHOT
mod_version=2.4.0

# Mod dependencies
sodium = mc1.21-0.6.0-beta.1-fabric
sodium = 0.6.0-beta.3+mc1.21.2
iris = 1.8.0-beta.1+1.21-fabric
modmenu = 12.0.0-beta.1

# Enabled mods
enableSodium = false
enableSodium = true
enableIris = false
enableModMenu = true

0 comments on commit 8aefc3b

Please sign in to comment.