This repository was archived by the owner on Jul 19, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ You can check your discord.js version with `npm list discord.js`. Should it stil
2626
2727``` diff
2828- const client = new Discord.Client({ disableEveryone: true });
29- + const client = new Discord.Client({ disableMentions: " everyone" });
29+ + const client = new Discord.Client({ disableMentions: ' everyone' });
3030```
3131
3232:::
@@ -924,7 +924,7 @@ Not sure how to set up a database? Check out [this page](/sequelize/)!
924924
925925``` diff
926926- guild.fetchBans().then(bans => console.log(`${bans.first().tag} was banned`));
927- + guild.fetchBans().then(bans => console.log(`${bans.first().user.tag} was banned because " ${bans.first().reason}" `));
927+ + guild.fetchBans().then(bans => console.log(`${bans.first().user.tag} was banned because ' ${bans.first().reason}' `));
928928```
929929
930930#### Guild#fetchMember(s)
@@ -2098,7 +2098,7 @@ ClientApplication.coverImage({ width: 1024, height: 1024 });
20982098
20992099``` diff
21002100- const client = new Discord.Client({ disableEveryone: true });
2101- + const client = new Discord.Client({ disableMentions: " everyone" });
2101+ + const client = new Discord.Client({ disableMentions: ' everyone' });
21022102```
21032103
21042104#### ClientOptions#partials
You can’t perform that action at this time.
0 commit comments