aboutsummaryrefslogtreecommitdiff
path: root/webAO/client/sender/sendCheck.ts
blob: 7eb47510722865e60bd9ca20ca7c7acbdcc21944 (plain)
1
2
3
4
5
6
7
8
import { client } from "../../client";

/**
 * Sends a keepalive packet.
 */
export const sendCheck = () => {
  client.sender.sendServer(`CH#${client.charID}#%`);
};