feat(mover): add shortcuts and aliases for the jump command

This commit is contained in:
jay 2021-04-05 18:16:13 +05:00
parent 6b79f1fc60
commit b453b7d6bd

View File

@ -246,6 +246,11 @@ function command(message_parts, player) {
case "r":
moveOrRide(1, 1, "left", message_parts2)
break
case "up":
case "u":
case "j":
moveOrRide(1, 1, "left", message_parts2)
break
case "back":
case "forward":
case "jump":