Update usage of #waypoint

It now properly reports when either a tag or name can be specified and includes the clear subcommand
This commit is contained in:
ZacSharp 2021-10-17 14:06:07 +02:00
parent 1b04386b01
commit 3e69281d61
No known key found for this signature in database
GPG Key ID: 9453647B005083A3
1 changed files with 6 additions and 4 deletions

View File

@ -291,14 +291,16 @@ public class WaypointsCommand extends Command {
"",
"Usage:",
"> wp [l/list] - List all waypoints.",
"> wp <l/list> <tag> - List all waypoints by tag.",
"> wp <s/save> <tag> - Save your current position as an unnamed waypoint with the specified tag.",
"> wp <s/save> <tag> <pos> - Save an unnamed waypoint with the specified tag and position.",
"> wp <s/save> <tag> <name> - Save the waypoint with the specified name.",
"> wp <s/save> <tag> <name> <pos> - Save the waypoint with the specified name and position.",
"> wp <i/info/show> <tag> - Show info on a waypoint by tag.",
"> wp <d/delete> <tag> - Delete a waypoint by tag.",
"> wp <g/goal> <tag> - Set a goal to a waypoint by tag.",
"> wp <goto> <tag> - Set a goal to a waypoint by tag and start pathing."
"> wp <i/info/show> <tag/name> - Show info on a waypoint by tag or name.",
"> wp <d/delete> <tag/name> - Delete a waypoint by tag or name.",
"> wp <c/clear> <tag> - Delete all waypoints with the specified tag.",
"> wp <g/goal> <tag/name> - Set a goal to a waypoint by tag or name.",
"> wp <goto> <tag/name> - Set a goal to a waypoint by tag or name and start pathing."
);
}