This commit is contained in:
Leijurv 2023-04-13 14:00:11 -07:00
parent d1a55c43e1
commit 7bb311687b
No known key found for this signature in database
GPG Key ID: 44A3EA646EADAC6A
3 changed files with 5 additions and 6 deletions

View File

@ -35,6 +35,6 @@ A Minecraft pathfinder bot.
modId="minecraft"
mandatory=true
# 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"
side="BOTH"

View File

@ -1,9 +1,9 @@
org.gradle.jvmargs=-Xmx4G
mod_version=1.9.2
mod_version=1.9.3
maven_group=baritone
archives_base_name=baritone
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

View File

@ -43,8 +43,7 @@ rootProject.name = 'baritone'
include("tweaker")
if (System.getProperty("Baritone.enabled_platforms") == null) {
// System.setProperty("Baritone.enabled_platforms", "fabric,forge")
System.setProperty("Baritone.enabled_platforms", "fabric")
System.setProperty("Baritone.enabled_platforms", "fabric,forge")
}
for (platform in System.getProperty("Baritone.enabled_platforms").split(",")) {
include(platform)