merge-requests/17/head
Hiroyuki 2021-03-01 17:39:45 -04:00
parent 10b10ec9c9
commit 152a4c3c3b
No known key found for this signature in database
GPG Key ID: C15AC26538975A24
2 changed files with 2 additions and 0 deletions

View File

@ -173,6 +173,7 @@ export default class Root extends Route {
const procMessage = await channel.createMessage({ embed }); const procMessage = await channel.createMessage({ embed });
await procMessage.addReaction(this.server.client.util.emojis.SUCCESS); await procMessage.addReaction(this.server.client.util.emojis.SUCCESS);
await procMessage.addReaction(this.server.client.util.emojis.ERROR); await procMessage.addReaction(this.server.client.util.emojis.ERROR);
await procMessage.getReaction('🙋');
const proc = await this.server.client.db.Proclamation.create({ const proc = await this.server.client.db.Proclamation.create({
issuer: director.userID, issuer: director.userID,

View File

@ -1,5 +1,6 @@
export { default as CallBackHandler } from './CallBackHandler'; export { default as CallBackHandler } from './CallBackHandler';
export { default as CommandHandler } from './CommandHandler'; export { default as CommandHandler } from './CommandHandler';
export { default as guildMemberAdd } from './guildMemberAdd'; export { default as guildMemberAdd } from './guildMemberAdd';
export { default as messageReactionAdd } from './messageReactionAdd';
export { default as ready } from './ready'; export { default as ready } from './ready';
export { default as Training } from './Training'; export { default as Training } from './Training';