diff --git a/flake.nix b/flake.nix index 3fd54bf..5575731 100644 --- a/flake.nix +++ b/flake.nix @@ -8,7 +8,7 @@ in { devShells."${system}" = { default = pkgs.mkShell { - packages = with pkgs; [ bun nodejs deno ]; + packages = with pkgs; [ bun biome ]; shellHook = '' echo Loaded the qweribot dev shell ''; diff --git a/src/commands/disableredeem.ts b/src/commands/disableredeem.ts index e22db8b..3d39aa0 100644 --- a/src/commands/disableredeem.ts +++ b/src/commands/disableredeem.ts @@ -40,7 +40,7 @@ export default new Command({ const selection = namedRedeems.get(args[0]); if (!selection) { await sendMessage( - `Redeem ${args[0]} doesn't exist. The internal names for redeems are here: https://github.com/qwerinope/qweribot#point-redeems`, + `Redeem ${args[0]} doesn't exist. The internal names for redeems are here: https://gitlab.com/qwerinope/qweribot#point-redeems`, msg.messageId, ); return; diff --git a/src/commands/enableredeem.ts b/src/commands/enableredeem.ts index 34ac406..c81b8e8 100644 --- a/src/commands/enableredeem.ts +++ b/src/commands/enableredeem.ts @@ -39,7 +39,7 @@ export default new Command({ const selection = namedRedeems.get(args[0]); if (!selection) { await sendMessage( - `Redeem ${args[0]} doesn't exist. The internal names for redeems are here: https://github.com/qwerinope/qweribot#point-redeems`, + `Redeem ${args[0]} doesn't exist. The internal names for redeems are here: https://gitlab.com/qwerinope/qweribot#point-redeems`, msg.messageId, ); return; diff --git a/src/commands/getcheers.ts b/src/commands/getcheers.ts index 196450b..c6ae5c3 100644 --- a/src/commands/getcheers.ts +++ b/src/commands/getcheers.ts @@ -12,7 +12,7 @@ export default new Command({ const args = parseCommandArgs(msg.messageText); if (!args[0]) { await sendMessage( - `A full list of cheers can be found here: https://github.com/qwerinope/qweribot#cheers`, + `A full list of cheers can be found here: https://gitlab.com/qwerinope/qweribot#cheers`, msg.messageId, ); return; diff --git a/src/commands/getcommands.ts b/src/commands/getcommands.ts index f321567..85e9c3b 100644 --- a/src/commands/getcommands.ts +++ b/src/commands/getcommands.ts @@ -12,7 +12,7 @@ export default new Command({ const args = parseCommandArgs(msg.messageText); if (!args[0]) { await sendMessage( - `A full list of commands can be found here: https://github.com/qwerinope/qweribot#commands-1`, + `A full list of commands can be found here: https://gitlab.com/qwerinope/qweribot#commands-1`, msg.messageId, ); return; diff --git a/src/events/message.ts b/src/events/message.ts index 01605bc..b8e8e8b 100644 --- a/src/events/message.ts +++ b/src/events/message.ts @@ -38,7 +38,7 @@ async function parseChatMessage(msg: EventSubChannelChatMessageEvent) { ) { // The msg.sourceMessageId checks if the message is from shared chat. shared chat should be ignored const message = await sendMessage( - `Welcome ${user?.displayName}. Please note: This chat has PvP, if you get timed out that's part of the qwerinope experience. You have 10 minutes of invincibility. A full list of commands and items can be found here: https://github.com/qwerinope/qweribot/#qweribot`, + `Welcome ${user?.displayName}. Please note: This chat has PvP, if you get timed out that's part of the qwerinope experience. You have 10 minutes of invincibility. A full list of commands and items can be found here: https://gitlab.com/qwerinope/qweribot/#qweribot`, ); await redis.set(`user:${user?.id}:haschatted`, "1"); await redis.set(`user:${user?.id}:welcomemessageid`, message.id); diff --git a/src/events/whisper.ts b/src/events/whisper.ts index 241507e..6b19c6c 100644 --- a/src/events/whisper.ts +++ b/src/events/whisper.ts @@ -10,7 +10,7 @@ eventSub.onUserWhisperMessage(chatterId, async (msg) => { if (!msg.messageText.startsWith(commandPrefix)) { await whisper( msg.senderUserId, - `Whisper commands start with '${commandPrefix}'. All whisper commands can be found here: https://github.com/qwerinope/qweribot#whisper-commands-1`, + `Whisper commands start with '${commandPrefix}'. All whisper commands can be found here: https://gitlab.com/qwerinope/qweribot#whisper-commands-1`, ); return; } @@ -25,7 +25,7 @@ eventSub.onUserWhisperMessage(chatterId, async (msg) => { case "h": await whisper( msg.senderUserId, - `All whisper commands can be found here: https://github.com/qwerinope/qweribot#whisper-commands-1`, + `All whisper commands can be found here: https://gitlab.com/qwerinope/qweribot#whisper-commands-1`, ); break; case "ghostwhisper":