blob: 69ff91e68bb77227f5fa16b876ae212626d51b06 (
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("#")}#%`);
};
|