From 4fc28697f96fd2bc73ad65c94319f23aed24d189 Mon Sep 17 00:00:00 2001 From: hgw Date: Thu, 5 Oct 2023 11:29:37 +0000 Subject: [PATCH] Change CTCP responses --- server/plugins/irc-events/ctcp.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/plugins/irc-events/ctcp.ts b/server/plugins/irc-events/ctcp.ts index db5e1806..15195b5c 100644 --- a/server/plugins/irc-events/ctcp.ts +++ b/server/plugins/irc-events/ctcp.ts @@ -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 function (irc, network) {