summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlee14 <Alee14498@gmail.com>2017-11-08 20:09:28 -0500
committerGitHub <noreply@github.com>2017-11-08 20:09:28 -0500
commit97462f82e7bc81da738807f03be2b0c5a7e57379 (patch)
treea1273acc18fa6afd14cc7bbbd6ef115e83744ef0
parent3f44b6f51a1af317852b99c4558824677c3f9e23 (diff)
downloadAleeBot-97462f82e7bc81da738807f03be2b0c5a7e57379.tar.gz
AleeBot-97462f82e7bc81da738807f03be2b0c5a7e57379.tar.bz2
AleeBot-97462f82e7bc81da738807f03be2b0c5a7e57379.zip
Removed the attack command
-rw-r--r--commands/attack.js29
1 files changed, 0 insertions, 29 deletions
diff --git a/commands/attack.js b/commands/attack.js
deleted file mode 100644
index d0b0ed0..0000000
--- a/commands/attack.js
+++ /dev/null
@@ -1,29 +0,0 @@
-const Discord = require('discord.js');
-exports.run = (client, message, args, config) => {
- //This command was ported from AstralMod
-
-message.channel.send("<@" + message.author.id + "> :right_facing_fist: " + args);
-
-
-commandProcessed = true;
-}
-exports.conf = {
- enabled: true,
-
- guildOnly: false,
-
- aliases: [],
-
- permLevel: 0
-
-};
-
-exports.help = {
-
- name: 'attack',
-
- description: 'If your mad at someone if they messed up use this command and mention them.',
-
- usage: 'attack [args]'
-
-};