forked from RepoMirrors/baritone
add a little version thingy
This commit is contained in:
parent
efb316de14
commit
52cafbc7aa
|
@ -116,7 +116,10 @@ jar {
|
||||||
jar {
|
jar {
|
||||||
manifest {
|
manifest {
|
||||||
attributes(
|
attributes(
|
||||||
'MixinConfigs': 'mixins.baritone.json'
|
'MixinConfigs': 'mixins.baritone.json',
|
||||||
|
|
||||||
|
'Implementation-Title': 'Baritone',
|
||||||
|
'Implementation-Version': version
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -227,6 +227,15 @@ public class ExampleBaritoneControl extends Behavior implements Helper {
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
if (msg.equals("version")) {
|
||||||
|
String version = ExampleBaritoneControl.class.getPackage().getImplementationVersion();
|
||||||
|
if (version == null) {
|
||||||
|
logDirect("No version detected. Either dev environment or broken install.");
|
||||||
|
} else {
|
||||||
|
logDirect("You are using Baritone v" + version);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
if (msg.equals("repack") || msg.equals("rescan")) {
|
if (msg.equals("repack") || msg.equals("rescan")) {
|
||||||
ChunkProviderClient cli = (ChunkProviderClient) ctx.world().getChunkProvider();
|
ChunkProviderClient cli = (ChunkProviderClient) ctx.world().getChunkProvider();
|
||||||
int playerChunkX = ctx.playerFeet().getX() >> 4;
|
int playerChunkX = ctx.playerFeet().getX() >> 4;
|
||||||
|
|
Loading…
Reference in New Issue