From 7ff263798688a102553729418a35fc794e5c7209 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=B9=E3=83=86=E3=83=A9?= Date: Sat, 20 Jan 2024 17:51:27 -0500 Subject: [PATCH] chore: make dev guild null by default --- src/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.ts b/src/config.ts index c6a3aed..ffe66f7 100644 --- a/src/config.ts +++ b/src/config.ts @@ -6,7 +6,7 @@ const config: IConfig = { StaffPrefix: "!!", GuildIds: { production: null, - development: "1010372303911129088" + development: null, }, StaffRole: "1166213537153167450", UpdatesChannel: "1166214000963506226", @@ -55,4 +55,4 @@ const config: IConfig = { }, } -export default config; \ No newline at end of file +export default config;