初めに
Discord.jsがV14になったので自分のBOTのV13移行ついでにメモとして記事を書きました。
Bot: https://github.com/Zel9278/ced-bot-rewrite
今後この記事を更新するかもしれないです。
GatewayIntentBits
IntentというClientに権限を設定するものを使うために使用するものです。
https://discord.js.org/#/docs/discord.js/main/class/IntentsBitField
const { Client, GatewayIntentBits } = require("discord.js")
const client = new Client({
intents: Object.values(GatewayIntentBits).filter(Number.isInteger) // ALL Intents
});
...
追加されたもの
終わりに
V14になってから、コマンドの引数にAttachmentなどが導入できるようになったので結構うれしいです、
でもちょっと分かりにくくなってたりしてたのが不満点だったりします。