blob: 41a78b404ca68eff5716975ecca0ec83cb52f7c6 (
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.sendSelf(`SM#${vanilla_music_arr.join("#")}#%`);
}
|