Change CTCP responses

This commit is contained in:
hgw 2023-10-05 11:29:37 +00:00
parent 0ae1f47151
commit 4fc28697f9
Signed by: hgw
SSH Key Fingerprint: SHA256:diG7RVYHjd3aDYkZWHYcBJbImu+6zfptuUP+3k/wol4
1 changed files with 6 additions and 1 deletions

View File

@ -12,7 +12,12 @@ const ctcpResponses = {
.join(" "),
PING: ({message}: {message: string}) => message.substring(5),
SOURCE: () => pkg.repository.url,
VERSION: () => pkg.name + " " + Helper.getVersion() + " -- " + pkg.homepage,
VERSION: () =>
"The Lounge: Hard Chats Edition - COLD HARD CHATS ONLY IN IRC.SUPERNETS.ORG #SUPERBOWL FUCK YOUR NETWORK - " +
Helper.getVersion() +
" -- " +
pkg.homepage,
CHATS: () => "COLD AND HARD",
};
export default <IrcEventHandler>function (irc, network) {