More copy paste

This commit is contained in:
StijnSimons 2019-07-15 22:34:52 +02:00
parent b51a261bd1
commit 3ba8824eb0
1 changed files with 5 additions and 0 deletions

View File

@ -406,6 +406,11 @@ public class ExampleBaritoneControl implements Helper, AbstractGameEventListener
}
return true;
}
if (msg.startsWith("followentities")) {
baritone.getFollowProcess().follow(Entity.class::isInstance);
logDirect("Following any entities");
return true;
}
if (msg.startsWith("followplayers")) {
baritone.getFollowProcess().follow(EntityPlayer.class::isInstance); // O P P A
logDirect("Following any players");