mirror of
https://github.com/litruv/DAdmin.git
synced 2026-07-24 10:46:14 +10:00
13 lines
299 B
JavaScript
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 :(")
|
|
})
|
|
}
|
|
} |