日本語使えなかったので修正

This commit is contained in:
suti7yk5032 2024-09-26 09:29:19 +09:00
parent 3575818af8
commit db16ddce29

View file

@ -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)