diff --git a/constants.ts b/constants.ts index 08f6586..be290d0 100644 --- a/constants.ts +++ b/constants.ts @@ -1,2 +1,2 @@ -export const GUILD_ID = '977176004797804585'; -export const MAINTAINERS_CHANNEL_ID = '977176106568396851'; +export const GUILD_ID = '923671181020766230'; +export const DEBUG_CHANNEL_ID = '977401259260788756'; diff --git a/index.ts b/index.ts index 8ba671a..e84828e 100644 --- a/index.ts +++ b/index.ts @@ -26,12 +26,12 @@ client.once('ready', async () => { ); const POLYMC_GUILD = await client.guilds.fetch(BuildConfig.GUILD_ID); - const MAINTAINERS_CHANNEL = POLYMC_GUILD.channels.cache.get( - BuildConfig.MAINTAINERS_CHANNEL_ID + const DEBUG_CHANNEL = POLYMC_GUILD.channels.cache.get( + BuildConfig.DEBUG_CHANNEL_ID ); - if (!MAINTAINERS_CHANNEL.isText()) throw new Error(); - MAINTAINERS_CHANNEL.send({ + if (!DEBUG_CHANNEL.isText()) throw new Error(); + DEBUG_CHANNEL.send({ embeds: [ { title: 'Started!', diff --git a/logParser.ts b/logParser.ts new file mode 100644 index 0000000..8b3c5aa --- /dev/null +++ b/logParser.ts @@ -0,0 +1 @@ +export const parseLog = (text: string) => {};