blob: c18821be4637b23e070b6123a63587717a0ca1be (
plain)
1
2
3
4
5
6
7
8
9
10
|
import {client} from '../../client'
import vanilla_music_arr from "../../constants/music.js";
/**
* we are asking ourselves what characters there are
* @param {Array} args packet arguments
*/
export const handleRM = (_args: string[]) => {
client.sender.sendSelf(`SM#${vanilla_music_arr.join("#")}#%`);
}
|