feat(mover): implement moveY (vertical move up or down)

Doesn't appear to be working properly, bot assumes XZ is goal reached
This commit is contained in:
jay
2021-01-17 13:56:18 +05:00
parent 8a39596b1d
commit 7b2b936f81
2 changed files with 18 additions and 1 deletions

View File

@@ -209,6 +209,10 @@ function command(username, message) {
case "closer":
subcommand("go follow close")
break
case "up":
case "down":
cfg.plugins.mover.moveY(player.position)
break
default:
subcommand("go follow once")
}