Skip to content

Commit

Permalink
Update to 1.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
comp500 committed Aug 15, 2020
1 parent 84df653 commit fe5d8ac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
11 changes: 8 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,14 @@ dependencies {
// PSA: Some older mods, compiled on Loom 0.2.1, might have outdated Maven POMs.
// You may need to force-disable transitiveness on them.

//modImplementation "io.github.prospector:modmenu:${project.modmenu_version}"
modApi "io.github.prospector:modmenu:${project.modmenu_version}"
modApi "me.shedaniel.cloth:config-2:${project.clothconfig_version}"
modImplementation("io.github.prospector:modmenu:${project.modmenu_version}") {
exclude(group: "net.fabricmc.fabric-api")
exclude(group: "net.fabricmc.fabric-loader")
}
modImplementation("me.shedaniel.cloth:config-2:${project.clothconfig_version}") {
exclude(group: "net.fabricmc.fabric-api")
exclude(group: "net.fabricmc.fabric-loader")
}
include "me.shedaniel.cloth:config-2:${project.clothconfig_version}"
}

Expand Down
14 changes: 7 additions & 7 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://fabricmc.net/use
minecraft_version=1.16-rc1
yarn_mappings=1.16-rc1+build.2
loader_version=0.8.8+build.202
minecraft_version=1.16.2
yarn_mappings=1.16.2+build.14
loader_version=0.9.1+build.205

# Mod Properties
mod_version = 1.0.5+1.16
mod_version = 1.0.5+1.16.2
maven_group = link.infra.borderlessmining
archives_base_name = borderless-mining

# Dependencies
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
fabric_version=0.12.4+build.365-1.16
modmenu_version=1.12.1+build.15
clothconfig_version=4.5.5
fabric_version=0.18.0+build.397-1.16
modmenu_version=1.14.6+build.31
clothconfig_version=4.7.0-unstable
4 changes: 0 additions & 4 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,5 @@
"fabricloader": ">=0.7.2",
"fabric": "*",
"minecraft": "~1.16-alpha.20.12.a"
},

"custom": {
"modmenu:clientsideOnly": true
}
}

0 comments on commit fe5d8ac

Please sign in to comment.