add descriptions for path and tp commands

This commit is contained in:
Bella 2019-11-26 11:39:38 -05:00
parent 6b6ef92c71
commit fb3e6df7ca
2 changed files with 2 additions and 0 deletions

View File

@ -11,6 +11,7 @@ import net.minecraft.pathfinding.PathPoint;
public class PathCommand extends Command {
public PathCommand() {
super("path", new ChunkBuilder().append("x").append("y").append("z").build());
setDescription("Pathfinding for AutoWalk");
}
int x = Integer.MIN_VALUE;

View File

@ -26,6 +26,7 @@ public class TeleportCommand extends Command {
.append("z", true)
.append("blocks per tp", false)
.build());
setDescription("Potentia teleport exploit");
}
@Override