aboutsummaryrefslogtreecommitdiff
path: root/webAO/packets/handlers/handleSP.ts
blob: 9d37ecbaeceb05626bfdcf10e22ad6856ce311bc (plain)
1
2
3
4
5
6
7
8
import { updateActionCommands } from "../../dom/updateActionCommands";
/**
 * position change
 * @param {string} pos new position
 */
export const handleSP = (args: string[]) => {
  updateActionCommands(args[1]);
};