blob: 50c6306c73c6a90b5102a1594954d941e1337bf7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
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}#%`);
}
|