diff options
Diffstat (limited to 'common.js')
-rw-r--r-- | common.js | 7 |
1 files changed, 2 insertions, 5 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, "\@") + |