aboutsummaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorlantice3720 <65650884+lantice3720@users.noreply.github.com>2023-05-07 15:03:23 +0900
committerlantice3720 <65650884+lantice3720@users.noreply.github.com>2023-05-07 15:03:23 +0900
commitd187facbdd47eca0afa5d91b9ed559b2c6b9863e (patch)
treeaf32b2b662f551ba02b0b3474f02adbe13cef3db /build.gradle
parent2766f4ac5150ab02e97860796fd536ced1d9dfbe (diff)
downloadSkyblocker-d187facbdd47eca0afa5d91b9ed559b2c6b9863e.tar.gz
Skyblocker-d187facbdd47eca0afa5d91b9ed559b2c6b9863e.tar.bz2
Skyblocker-d187facbdd47eca0afa5d91b9ed559b2c6b9863e.zip
REI Integration. Needed to add recipe identifier. Small change in itemlist.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index dc1b09be..c0ba2b6a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -50,6 +50,10 @@ dependencies {
// Mod Menu
modImplementation "com.terraformersmc:modmenu:${project.mod_menu_version}"
+ // REI
+ modImplementation "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}"
+ modRuntimeOnly "me.shedaniel:RoughlyEnoughItems-fabric:${project.rei_version}"
+
// Fabric API. This is technically optional, but you probably want it anyway.
modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_api_version}"
@@ -113,7 +117,8 @@ modrinth {
versionType = "release"
dependencies = [ // Yet another array. Create a new `ModDependency` or `VersionDependency` with two strings - the ID and the scope
new ModDependency("P7dR8mSH", "required"), // Creates a new required dependency on Fabric API
- new ModDependency("mOgUt4GM", "optional") // modmenu
+ new ModDependency("mOgUt4GM", "optional"), // modmenu
+ new ModDependency("nfn13YXA", "optional") // REI
]
changelog = System.getenv('CHANGELOG')
}