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