aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleSP.ts
blob: e2cad18c27ef43db924fee70d619f7afb0acafec (plain)
1
2
3
4
5
6
7
8
9
import { updateActionCommands } from "../../client";

/**
* position change
* @param {string} pos new position
*/
export const handleSP = (args: string[]) => {
    updateActionCommands(args[1]);
}