lowercase ar bug

master
Kit Kasune 3 years ago
parent 2b8fd94bd2
commit 8c4129a890
  1. 2
      commands/misc/ar.js

@ -52,7 +52,7 @@ module.exports = {
if (tar.triggers.length === 20) {return message.channel.send("Because of data storage concerns, your ARs are capped at 20 per server. You can join the official support server and talk to the devs if you have a legitimate reason for raising this limit and they can see about raising it for you!");}
let h = false; let ar; for (ar of tar.triggers) {if (ar && ar.toLowerCase() === `${trigger}`.toLowerCase()) {h = true;}}
if (h) {return message.channel.send("You seem to already have that trigger. Try using `edit` instead!");}
tar.triggers.push(trigger);
tar.triggers.push(trigger.toLowerCase());
client.misc.cache.ar.set(message.guild.id, tar.triggers);
tar.ars.push(response);
tar.save();

Loading…
Cancel
Save