blob: 92c1e8ec6ddced1c20407fa1320b2cf39e3d41f9 (
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.sendSelf(`SC#${vanilla_character_arr.join("#")}#%`);
}
|