mirror of
https://github.com/cabaletta/baritone
synced 2025-02-16 11:57:04 +00:00
1.19.1-rc2
This commit is contained in:
parent
fcd20b10f1
commit
06be5f5372
@ -26,6 +26,6 @@
|
||||
|
||||
"depends": {
|
||||
"fabricloader": ">=0.11.0",
|
||||
"minecraft": "1.19"
|
||||
"minecraft": "1.19.1-rc.2"
|
||||
}
|
||||
}
|
@ -31,3 +31,10 @@ description='''
|
||||
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"
|
@ -4,9 +4,9 @@ mod_version=1.9.0-local
|
||||
maven_group=baritone
|
||||
archives_base_name=baritone
|
||||
|
||||
minecraft_version=1.19
|
||||
forge_version=1.19-41.0.1
|
||||
fabric_version=0.13.3
|
||||
minecraft_version=1.19.1-rc2
|
||||
forge_version=1.19.1-41.0.1
|
||||
fabric_version=0.14.8
|
||||
|
||||
# # un comment for forge debugging default (as opposed to fabric)
|
||||
# baritone.forge_build=true
|
||||
|
@ -45,7 +45,7 @@ rootProject.name = 'baritone'
|
||||
include("common")
|
||||
include("tweaker")
|
||||
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(",")) {
|
||||
include(platform)
|
||||
|
@ -42,7 +42,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||
public class MixinClientPlayerEntity {
|
||||
|
||||
@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"),
|
||||
cancellable = true
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user