blob: 2542ab1c56e147bae3028c80b5a139f91c3fa353 (
plain)
1
2
3
4
5
6
7
|
/**
* Handles the "MusicMode" packet
* @param {Array} args packet arguments
*/
export const handleMM = (_args: string[]) => {
// It's unused nowadays, as preventing people from changing the music is now serverside
};
|