1.19.1-rc2

This commit is contained in:
Wagyourtail 2022-07-21 12:16:21 -06:00
parent fcd20b10f1
commit 06be5f5372
No known key found for this signature in database
GPG Key ID: B72EB1D5CD437025
5 changed files with 13 additions and 6 deletions

View File

@ -26,6 +26,6 @@
"depends": { "depends": {
"fabricloader": ">=0.11.0", "fabricloader": ">=0.11.0",
"minecraft": "1.19" "minecraft": "1.19.1-rc.2"
} }
} }

View File

@ -31,3 +31,10 @@ description='''
A Minecraft pathfinder bot. A Minecraft pathfinder bot.
''' '''
[[dependencies.baritoe]]
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.1]"
ordering="NONE"
side="BOTH"

View File

@ -4,9 +4,9 @@ mod_version=1.9.0-local
maven_group=baritone maven_group=baritone
archives_base_name=baritone archives_base_name=baritone
minecraft_version=1.19 minecraft_version=1.19.1-rc2
forge_version=1.19-41.0.1 forge_version=1.19.1-41.0.1
fabric_version=0.13.3 fabric_version=0.14.8
# # un comment for forge debugging default (as opposed to fabric) # # un comment for forge debugging default (as opposed to fabric)
# baritone.forge_build=true # baritone.forge_build=true

View File

@ -45,7 +45,7 @@ rootProject.name = 'baritone'
include("common") include("common")
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")
} }
for (platform in System.getProperty("Baritone.enabled_platforms").split(",")) { for (platform in System.getProperty("Baritone.enabled_platforms").split(",")) {
include(platform) include(platform)

View File

@ -42,7 +42,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
public class MixinClientPlayerEntity { public class MixinClientPlayerEntity {
@Inject( @Inject(
method = "chat(Ljava/lang/String;Lnet/minecraft/network/chat/Component;)V", method = "sendChat(Ljava/lang/String;Lnet/minecraft/network/chat/Component;)V",
at = @At("HEAD"), at = @At("HEAD"),
cancellable = true cancellable = true
) )