WIP: Working, however /remind is missing features

This commit is contained in:
2025-07-04 07:01:10 -04:00
parent 3a721c6e5f
commit c2029290d2
2 changed files with 74 additions and 33 deletions

View File

@@ -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 {