blob: eceba082d793af6429a505ef8fe6cb0f92fbbd35 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import { client } from "../../client";
/**
* Requests to select a music track.
* @param {number?} song the song to be played
*/
export const sendMusic = (song: string) => {
client.sender.sendServer(`MC#${song}#${client.charID}#%`);
}
|