Discord.py ping 命令在 cog 中不起作用
Discord.py ping command doesn't work in a cog
我的 ping 命令在 cog 中不起作用,但在我的 main.py 文件中起作用。这是齿轮的代码:
import discord
from discord.ext import commands
class Misc(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.Cog.listener()
async def on_ready(self):
print('Misc cog loaded\n-----')
@commands.command()
async def ping(self, ctx):
await ctx.send(f'pong!\n{round(bot.latency * 1000)}ms')
def setup(bot):
bot.add_cog(Misc(bot))
当我 运行 ping 命令时,我得到这个错误:
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: NameError: name 'bot' is not defined
简单的解决方案,您将 bot
添加到 class 对象 Misc
中作为 self.bot
,因此在该上下文中引用 bot.latency
时,您实际上应该是使用 self.bot.latency
.
我的 ping 命令在 cog 中不起作用,但在我的 main.py 文件中起作用。这是齿轮的代码:
import discord
from discord.ext import commands
class Misc(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.Cog.listener()
async def on_ready(self):
print('Misc cog loaded\n-----')
@commands.command()
async def ping(self, ctx):
await ctx.send(f'pong!\n{round(bot.latency * 1000)}ms')
def setup(bot):
bot.add_cog(Misc(bot))
当我 运行 ping 命令时,我得到这个错误:
discord.ext.commands.errors.CommandInvokeError: Command raised an exception: NameError: name 'bot' is not defined
简单的解决方案,您将 bot
添加到 class 对象 Misc
中作为 self.bot
,因此在该上下文中引用 bot.latency
时,您实际上应该是使用 self.bot.latency
.