blob: 76b97b7272c29c829114891b04c13abf58e3c1f2 (
plain)
1
2
3
4
5
6
7
8
9
|
import { client } from "../../client";
/**
* Requests to change the area.
* @param {string} area the area name
*/
export const sendAreaChange = (area: string) => {
client.sender.sendServer(`MC#${area}#${client.charID}#%`);
};
|