Orbiit / giggle-bot

A BOT THAT doesn't SCREAM as much (and this time uses discord.js fancy library)
https://discord.gg/azw3qEH
0 stars 0 forks source link

prevent the use of mentions for names #2

Closed SheepTester closed 6 years ago

SheepTester commented 6 years ago

@Velosify's name is @everyone which means he constantly spams everyone else with mentions

one lazy solution is to just blacklist "@"; I don't see any harm in doing that :P

SheepTester commented 6 years ago

to do so, one can add:

if (~setName[1].indexOf("@")) {
  sendOK = false;
  msg.react(thumbs_down);
  channel.send(`i have been instructed to disallow the usage of @ in names, sorry!`);
} else {
  // ...
}

around line 322

SheepTester commented 6 years ago

fixed by 5af714d

heaucques commented 6 years ago

aw