diff --git a/dislocker_slash.py b/dislocker_slash.py index 50fd245..6484861 100644 --- a/dislocker_slash.py +++ b/dislocker_slash.py @@ -789,13 +789,11 @@ async def devicereg(interaction: discord.Interaction): await interaction.response.send_message(":x: 内部エラーが発生しました。\nサーバーでエラーが発生しています。管理者に問い合わせてください。", ephemeral=True) @tree.command(name="fstop", description="PCの使用を強制終了します。") -async def fstop(interaction: discord.Interaction, PC番号: int, 理由: str): - pc_number = PC番号 - bot_about = 理由 - force_stop = dislocker.force_stop(pc_number=pc_number, bot_about=bot_about) +async def fstop(interaction: discord.Interaction, pc_number: int, about: str): + force_stop = dislocker.force_stop(pc_number=pc_number, bot_about=about) if force_stop["result"] == 0: await interaction.response.send_message(f":white_check_mark: PC {pc_number} の使用を強制終了しました。", ephemeral=True) - dislocker.log(title=f"[INFO] PC {pc_number} の使用を強制終了しました。", message=f"理由 | {bot_about}", flag=0) + dislocker.log(title=f"[INFO] PC {pc_number} の使用を強制終了しました。", message=f"理由 | {about}", flag=0) elif force_stop["result"] == 1: if force_stop["about"] == "not_used": await interaction.response.send_message(":x: そのPCは使用されていません。", ephemeral=True)