File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,13 @@ export default class implements Event {
2424 await wait ( 2_000 ) ;
2525 const parts : string [ ] = [ ] ;
2626
27- if ( thread . parent ?. name . includes ( "djs" ) ) {
27+ if ( thread . parent ?. name . includes ( "voice" ) ) {
28+ parts . push (
29+ "- What are your intents? `GuildVoiceStates` is **required** to receive voice data!" ,
30+ "- Show what dependencies you are using -- `generateDependencyReport()` is exported from `@discordjs/voice`." ,
31+ "- Try looking at common examples: <https://github.com/discordjs/voice-examples>." ,
32+ ) ;
33+ } else if ( thread . parent ?. name . includes ( "djs" ) ) {
2834 parts . push (
2935 "- What's your exact discord.js `npm list discord.js` and node `node -v` version?" ,
3036 "- Not a discord.js issue? Check out <#1081585952654360687>." ,
You can’t perform that action at this time.
0 commit comments