diff options
-rw-r--r-- | common.js | 7 | ||||
-rw-r--r-- | nsfw.js | 4 |
2 files changed, 4 insertions, 7 deletions
@@ -102,8 +102,5 @@ module.exports.listChangeCommand = (action, list, status) => new Object({ } }) -module.exports.stripPings = str => str - .replace(/<@!/g, "<@!") - .replace(/<@&/g, "<@&") - .replace(/@here/g, "@here") - .replace(/@everyone/g, "@everyone") +module.exports.stripPings = str => str.replace(/@/g, "\@") + @@ -15,7 +15,7 @@ module.exports = { const target = targetPing ? common.getPing(targetPing) : msg.author.id if (target) - msg.reply(`${asciiDick(target)} ← <@!${targe}>'s Dick'`) + msg.reply(`${asciiDick(target)} ← <@!${target}>'s Dick'`) } }, boobsize: { @@ -25,7 +25,7 @@ module.exports = { const target = targetPing ? common.getPing(targetPing) : msg.author.id if (target) - msg.reply(`${asciiBoob(target)} ← <@!${targe}>'s Boobs'`) + msg.reply(`${asciiBoob(target)} ← <@!${target}>'s Boobs'`) } }, } |