aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--aleebot.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/aleebot.js b/aleebot.js
index 33ef9a9..c4ae5d5 100644
--- a/aleebot.js
+++ b/aleebot.js
@@ -258,7 +258,9 @@ commandProcessed = true;
}
if(command === 'say'){
- if(message.author.id !== config.ownerID) return;
+ if(message.author.id !== config.ownerID)
+ message.reply('Hey! Your not Alee14!')
+ return;
message.channel.sendMessage(args.join(" "));
message.delete();