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