Remove more commands

This commit is contained in:
Dragon Fire
2024-03-27 18:01:37 -04:00
parent de72d1430b
commit b73c7cfa8d
6 changed files with 17 additions and 105 deletions
-17
View File
@@ -1,17 +0,0 @@
const Command = require('../../framework/Command');
const UserAgent = require('user-agents');
module.exports = class UserAgentCommand extends Command {
constructor(client) {
super(client, {
name: 'user-agent',
group: 'random-res',
memberName: 'user-agent',
description: 'Responds with a random User Agent.'
});
}
run(msg) {
return msg.say(new UserAgent().toString());
}
};