Skip to content

Commit 45c00e4

Browse files
committed
Change to Meteor's Baritone
- For future check if Meteor's fork of Baritone or OG Baritone is present to avoid warning "Not found Baritone for integrations"
1 parent dc767c5 commit 45c00e4

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ dependencies {
7171
include(implementation(annotationProcessor("io.github.llamalad7:mixinextras-fabric:0.5.0")))
7272

7373
// Meteor Client
74-
modImplementation files("libs\\baritone-unoptimized-fabric-1.14.0-1.jar")
74+
modImplementation("meteordevelopment:baritone:1.21.10-SNAPSHOT")
7575
modImplementation("meteordevelopment:meteor-client:${project.minecraft_version}-SNAPSHOT")
7676
implementation "org.meteordev:starscript:0.2.5"
7777
implementation "meteordevelopment:orbit:0.2.4"
-1.73 MB
Binary file not shown.

src/main/java/nekiplay/MixinPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public void onLoad(String mixinPackage) {
4444
isNumbyHack = loader.isModLoaded("numbyhack");
4545
isZewo2 = loader.isModLoaded("zewo2");
4646

47-
isBaritonePresent = loader.isModLoaded("baritone");
47+
isBaritonePresent = loader.isModLoaded("baritone-meteor") || loader.isModLoaded("baritone");
4848
isJourneyMapPresent = loader.isModLoaded("journeymap");
4949
isXaeroWorldMapresent = loader.isModLoaded("xaeroworldmap");
5050
isXaeroMiniMapresent = loader.isModLoaded("xaerominimap");

0 commit comments

Comments
 (0)