前提・実現したいこと
https://github.com/adriansteffan/DiscordJockey
こちらを参考にしてMusicBotを稼働させたい
発生している問題・エラーメッセージ
Ignoring exception in command connect: Traceback (most recent call last): File "C:\Users\majim\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\bot.py", line 939, in invoke await ctx.command.invoke(ctx) File "C:\Users\majim\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 855, in invoke await self.prepare(ctx) File "C:\Users\majim\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 789, in prepare await self._parse_arguments(ctx) File "C:\Users\majim\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 706, in _parse_arguments kwargs[name] = await self.transform(ctx, param) File "C:\Users\majim\AppData\Local\Programs\Python\Python39\lib\site-packages\discord\ext\commands\core.py", line 542, in transform raise MissingRequiredArgument(param) discord.ext.commands.errors.MissingRequiredArgument: dest_channel_name is a required argument that is missing.
該当のソースコード
Python3
1from discord.ext import commands 2 3from config import config 4from musicbot import utils 5from musicbot.audiocontroller import AudioController 6 7 8class General(commands.Cog): 9 """ A collection of the commands for moving the bot around in you server. 10 Attributes: 11 bot: The instance of the bot that is executing the commands. 12 """ 13 14 def __init__(self, bot): 15 self.bot = bot 16 17 @commands.command(name='connect', description=config.HELP_CONNECT_LONG, help=config.HELP_CONNECT_SHORT) 18 async def _connect(self, ctx, *, dest_channel_name: str): 19 current_guild = utils.get_guild(self.bot, ctx.message) 20 21 if current_guild is None: 22 await utils.send_message(ctx, config.NO_GUILD_MESSAGE) 23 return 24 25 if utils.guild_to_audiocontroller[current_guild] is None: 26 utils.guild_to_audiocontroller[current_guild] = AudioController(self.bot, current_guild, 27 config.DEFAULT_VOLUME) 28 await utils.connect_to_channel(current_guild, dest_channel_name, ctx, switch=False, default=True) 29 30 @commands.command(name='disconnect', description=config.HELP_DISCONNECT_LONG, help=config.HELP_DISCONNECT_SHORT)
試したこと
dest_channel_nameというものがよくわからくて
一通り調べても有力な情報が一切見当たらなくて
特に試せてないです
補足情報(FW/ツールのバージョンなど)
discord.py 1.7.3
Python 3.9.0
コマンドをどう実行したんですか?
失礼致しました。
ソースコードとして一部記載させていただきましたが
@commands.command(name='connect', description=config.HELP_CONNECT_LONG, help=config.HELP_CONNECT_SHORT)
async def _connect(self, ctx, *, dest_channel_name: str):
current_guild = utils.get_guild(self.bot, ctx.message)
if current_guild is None:
await utils.send_message(ctx, config.NO_GUILD_MESSAGE)
return
if utils.guild_to_audiocontroller[current_guild] is None:
utils.guild_to_audiocontroller[current_guild] = AudioController(self.bot, current_guild,
config.DEFAULT_VOLUME)
await utils.connect_to_channel(current_guild, dest_channel_name, ctx, switch=False, default=True)
こちらに書いてあるconnectを実行しました。
ソースコード全文は量が多すぎて参考にしたGithubのURLを載せてあります。
言い方が悪かったですね。
何という文章を送信してコマンドを実行しましたか。
/connectというコマンドを実行しました