blob: 69cba58bdc053861f28800594c58eb89bc524229 (
plain)
1
2
3
4
5
6
7
8
9
|
import { client } from "../../client";
/**
* Requests to change the music to the specified track.
* @param {string} track the track ID
*/
export const sendMusicChange = (track: string) => {
client.sender.sendServer(`MC#${track}#${client.charID}#%`);
};
|