blob: 6953870545be9b014c18d77ce3f3b2af26b7c452 (
plain)
1
2
3
4
5
6
7
8
9
|
import { client } from "../../client";
/**
* Sends testimony command.
* @param {string} testimony type
*/
export const sendRT = (testimony: string) => {
client.sender.sendServer(`RT#${testimony}#%`);
};
|