From c2c7737119193a0ac50a16593e79fb3ccc8adda5 Mon Sep 17 00:00:00 2001 From: "Ean Milligan (Bastion)" Date: Fri, 28 Apr 2023 23:27:05 -0400 Subject: [PATCH] why was that v16??? --- deps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.ts b/deps.ts index f1a0c59..6e4f276 100644 --- a/deps.ts +++ b/deps.ts @@ -1,5 +1,5 @@ // All external dependencies are to be loaded here to make updating dependency versions much easier -import { getBotIdFromToken } from 'https://deno.land/x/discordeno@16.0.1/mod.ts'; +import { getBotIdFromToken } from 'https://deno.land/x/discordeno@17.0.1/mod.ts'; import config from './config.ts'; import { LOCALMODE } from './flags.ts'; export const botId = getBotIdFromToken(LOCALMODE ? config.localToken : config.token);