diff options
| author | Alee14 <Alee14498@gmail.com> | 2017-08-12 14:26:00 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-12 14:26:00 -0400 |
| commit | 4600cc920fda020cbef37f73a32e57077319943d (patch) | |
| tree | f195926a4d6c108e3ecedb88420b3e5f54537bd6 /aleebot.js | |
| parent | 9e25fcf5442dee18ef2812e7f27a4f24c6fd2c03 (diff) | |
| download | AleeBot-4600cc920fda020cbef37f73a32e57077319943d.tar.gz AleeBot-4600cc920fda020cbef37f73a32e57077319943d.tar.bz2 AleeBot-4600cc920fda020cbef37f73a32e57077319943d.zip | |
Update aleebot.js
Diffstat (limited to 'aleebot.js')
| -rw-r--r-- | aleebot.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -258,7 +258,7 @@ commandProcessed = true; } if(command === 'say'){ - if(message.author.id == 242775871059001344242775871059001344){ + if(message.author.id !== config.ownerID){ } else { message.reply("Hey! You're not Alee14!") @@ -269,7 +269,7 @@ commandProcessed = true; } if(command === 'eval'){ - if(message.author.id == 242775871059001344242775871059001344) return; + if(message.author.id !== config.ownerID) return; try { const code = args.join(" "); let evaled = eval(code); |
