Files
DAdmin/plugins/swearjar.js
2019-03-19 05:38:33 +11:00

13 lines
303 B
JavaScript

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