Remove unused code

This commit is contained in:
2021-09-18 08:04:16 -07:00
parent 2e59f94dcf
commit ed9af2ee3a
-26
View File
@@ -113,30 +113,4 @@ export default class InteractionManager {
}
}
}
export class AInteractionManager {
async onCommand(command: string, args: any, message: Message) {
if(command.toLowerCase() !== 'interaction') return;
if(!message.guildId) return;
if(message.member === null) return;
if(message.guild === null) return;
// TODO: Add dev check
if(args.length === 0)
return await sendReply(message, {
embeds: [makeInfoEmbed ({
user: message.author
})]
});
else {
if(args[0].toLowerCase() === "reloadall") {
}
}
}
}