WIP: Working, however /remind is missing features
This commit is contained in:
11
index.ts
11
index.ts
@@ -89,12 +89,21 @@ const commands = new Collection<string, Command>();
|
||||
|
||||
import PingCommand from "./commands/calendar/ping";
|
||||
import RemindCommand from "./commands/calendar/remind";
|
||||
import QuoteCommand from "./commands/quotes/quote";
|
||||
|
||||
console.debug(`${remindersChannelId}`);
|
||||
|
||||
commands.set("ping", PingCommand({ client: client, db: sql }));
|
||||
commands.set(
|
||||
"remind",
|
||||
RemindCommand({ client: client, db: sql, publicChannel: remindersChannelId }),
|
||||
RemindCommand({
|
||||
client: client,
|
||||
db: sql,
|
||||
publicChannel: remindersChannelId,
|
||||
responseMode: "public",
|
||||
}),
|
||||
);
|
||||
commands.set("quote", QuoteCommand({}));
|
||||
|
||||
async function syncCommands() {
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user