Update more text in Pokecord

This commit is contained in:
Valerie 2025-02-20 16:45:25 -05:00
parent 185bff4395
commit b81a5f34b2
3 changed files with 4 additions and 4 deletions

View file

@ -36,5 +36,5 @@ class MixinMeta(ABC):
@commands.group(name="poke") @commands.group(name="poke")
async def poke(self, ctx: commands.Context): async def poke(self, ctx: commands.Context):
""" """
Pokecord commands Ava's Pokemon commands
""" """

View file

@ -17,12 +17,12 @@ _ = Translator("Pokecord", __file__)
class Dev(MixinMeta): class Dev(MixinMeta):
"""Pokecord Development Commands""" """Ava's Pokemon Development Commands"""
@poke.group(hidden=True) @poke.group(hidden=True)
@commands.is_owner() @commands.is_owner()
async def dev(self, ctx): async def dev(self, ctx):
"""Pokecord Development Commands""" """Ava's Pokemon Development Commands"""
@dev.command(name="spawn") @dev.command(name="spawn")
async def dev_spawn(self, ctx, *pokemon): async def dev_spawn(self, ctx, *pokemon):

View file

@ -22,7 +22,7 @@ _ = Translator("Pokecord", __file__)
class GeneralMixin(MixinMeta): class GeneralMixin(MixinMeta):
"""Pokecord General Commands""" """Ava's Pokemon General commands"""
@commands.max_concurrency(1, commands.BucketType.user) @commands.max_concurrency(1, commands.BucketType.user)
@commands.command(name="list", aliases=["pokemon"]) @commands.command(name="list", aliases=["pokemon"])