first commit
This commit is contained in:
29
src/config.ts
Normal file
29
src/config.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
import { ActivityType } from "discord.js";
|
||||
|
||||
|
||||
|
||||
export const GUILD_ID = '1475098530505953441';
|
||||
|
||||
|
||||
export const CHANNELS = {
|
||||
RULES: "1475100731991392539",
|
||||
DEV: "1475110775235543092",
|
||||
ANNOUNCEMENTS: "1475100626286547004",
|
||||
UPDATES: "1475101645963661333",
|
||||
DEV_CHAT: "1475101776561569875",
|
||||
GENERAL: "1475098531814707343",
|
||||
DEV_MEMES: "1475101184069992670",
|
||||
MODERATOR_ONLY: "1475100731991392542",
|
||||
};
|
||||
|
||||
export const ROLES = {
|
||||
RULES: "1475100051352191047",
|
||||
};
|
||||
|
||||
// Discord modified the way activities work, for now, we'll only use custom ones
|
||||
export const ROTATE_ACTIVITIES:{content:string;type:ActivityType}[] = [
|
||||
{content: "Fixing Bugs", type: ActivityType.Custom},
|
||||
{content: "Adding New Features", type: ActivityType.Custom},
|
||||
{content: "Improving Performance", type: ActivityType.Custom},
|
||||
{content: "Listening to Feedback", type: ActivityType.Custom},
|
||||
]
|
||||
Reference in New Issue
Block a user