Files
DAdmin/plugins/swearjar.js

13 lines
299 B
JavaScript

var swearjar = require('swearjar')
module.exports = {
name: "Auto Voice Channel",
init: (dclient) => {
var client = dclient
client.on("message", (msg) => {
if (swearjar.profane(msg.cleanContent))
msg.reply("that's profane :(")
})
}
}