mirror of https://github.com/cabaletta/baritone
v1.9.3
This commit is contained in:
parent
d1a55c43e1
commit
7bb311687b
|
@ -35,6 +35,6 @@ A Minecraft pathfinder bot.
|
||||||
modId="minecraft"
|
modId="minecraft"
|
||||||
mandatory=true
|
mandatory=true
|
||||||
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
# This version range declares a minimum of the current minecraft version up to but not including the next major version
|
||||||
versionRange="[1.19.3]"
|
versionRange="[1.19.4]"
|
||||||
ordering="NONE"
|
ordering="NONE"
|
||||||
side="BOTH"
|
side="BOTH"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
org.gradle.jvmargs=-Xmx4G
|
org.gradle.jvmargs=-Xmx4G
|
||||||
|
|
||||||
mod_version=1.9.2
|
mod_version=1.9.3
|
||||||
maven_group=baritone
|
maven_group=baritone
|
||||||
archives_base_name=baritone
|
archives_base_name=baritone
|
||||||
|
|
||||||
minecraft_version=1.19.4
|
minecraft_version=1.19.4
|
||||||
forge_version=1.19.3-44.0.1
|
forge_version=1.19.4-45.0.43
|
||||||
fabric_version=0.14.11
|
fabric_version=0.14.11
|
||||||
|
|
|
@ -43,8 +43,7 @@ rootProject.name = 'baritone'
|
||||||
|
|
||||||
include("tweaker")
|
include("tweaker")
|
||||||
if (System.getProperty("Baritone.enabled_platforms") == null) {
|
if (System.getProperty("Baritone.enabled_platforms") == null) {
|
||||||
// System.setProperty("Baritone.enabled_platforms", "fabric,forge")
|
System.setProperty("Baritone.enabled_platforms", "fabric,forge")
|
||||||
System.setProperty("Baritone.enabled_platforms", "fabric")
|
|
||||||
}
|
}
|
||||||
for (platform in System.getProperty("Baritone.enabled_platforms").split(",")) {
|
for (platform in System.getProperty("Baritone.enabled_platforms").split(",")) {
|
||||||
include(platform)
|
include(platform)
|
||||||
|
|
Loading…
Reference in New Issue