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