(interaction: ButtonInteraction)
| 204 | } |
| 205 | |
| 206 | private async handleSkip(interaction: ButtonInteraction): Promise<void> { |
| 207 | await this.bot.slashCommandsMap.get("skip")!.execute(interaction); |
| 208 | } |
| 209 | |
| 210 | private async handlePlayPause(interaction: ButtonInteraction): Promise<void> { |
| 211 | if (this.player.state.status === AudioPlayerStatus.Playing) { |