Skip to content

Commit f279308

Browse files
committed
added baritone dependency
1 parent 105ff40 commit f279308

File tree

5 files changed

+24
-1
lines changed

5 files changed

+24
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"fabric-api": ">=${fabricApiVersion}+${minecraftVersion}",
3131
"minecraft": "~${minecraftVersion}",
3232
"fabric-language-kotlin": ">=${kotlinFabricVersion}",
33-
"java": ">=${javaVersion}"
33+
"java": ">=${javaVersion}",
34+
"baritone": ">=${baritoneVersion}"
3435
}
3536
}

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,10 @@ mandatory = true
3232
versionRange = "[${kotlinForgeVersionMin},${kotlinForgeVersionMax}]"
3333
ordering = "NONE"
3434
side = "CLIENT"
35+
36+
[[dependencies.${modId}]]
37+
modId = "baritoe" # Baritone decided to do this, jesus fucking christ
38+
mandatory = true
39+
versionRange = "[${baritoneVersion},]"
40+
ordering = "NONE"
41+
side = "CLIENT"

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ mixinExtrasVersion=0.4.1
1313
kotlinVersion=2.0.0
1414
kotlinxCoroutinesVersion=1.9.0-RC
1515
javaVersion=17
16+
baritoneVersion=1.10.2
1617
discordIPCVersion=7ab2e77312
1718

1819
# Fabric https://fabricmc.net/develop/

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,10 @@ type = "required"
3939
versionRange = "[${kotlinForgeVersionMin},${kotlinForgeVersionMax}]"
4040
ordering = "NONE"
4141
side = "CLIENT"
42+
43+
[[dependencies.${modId}]]
44+
modId = "baritoe" # Baritone decided to do this, jesus fucking christ
45+
mandatory = true
46+
versionRange = "[${baritoneVersion},]"
47+
ordering = "NONE"
48+
side = "CLIENT"

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,10 @@ type = "required"
3939
versionRange = "[${kotlinForgeVersionMin},${kotlinForgeVersionMax}]"
4040
ordering = "NONE"
4141
side = "CLIENT"
42+
43+
[[dependencies.${modId}]]
44+
modId = "baritoe" # Baritone decided to do this, jesus fucking christ
45+
mandatory = true
46+
versionRange = "[${baritoneVersion},]"
47+
ordering = "NONE"
48+
side = "CLIENT"

0 commit comments

Comments
 (0)