diff options
author | 2023-05-01 14:20:31 +0100 | |
---|---|---|
committer | 2023-05-06 13:20:46 +0100 | |
commit | 64e1ac315daf4d17da02790859baebbbbb7bdfc4 (patch) | |
tree | 15c3e2973685408b11272a34af1bc2de58580e28 /bot/exts/fun/fun.py | |
parent | update Categories (diff) |
update Client constants
This also renames the Client class to Bot, to align better with Python.
Diffstat (limited to 'bot/exts/fun/fun.py')
-rw-r--r-- | bot/exts/fun/fun.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/fun.py b/bot/exts/fun/fun.py index 16279dd7..aa12b079 100644 --- a/bot/exts/fun/fun.py +++ b/bot/exts/fun/fun.py @@ -12,7 +12,7 @@ from discord.ext.commands import BadArgument, Cog, Context from pydis_core.utils.commands import clean_text_or_reply from bot.bot import Bot -from bot.constants import Client, Colours, Emojis +from bot.constants import Bot, Colours, Emojis from bot.utils import helpers, messages log = logging.getLogger(__name__) @@ -58,7 +58,7 @@ class Fun(Cog): dice = " ".join(self._get_random_die() for _ in range(num_rolls)) await ctx.send(dice) else: - raise BadArgument(f"`{Client.prefix}roll` only supports between 1 and 6 rolls.") + raise BadArgument(f"`{Bot.prefix}roll` only supports between 1 and 6 rolls.") @commands.command(name="randomcase", aliases=("rcase", "randomcaps", "rcaps",)) async def randomcase_command(self, ctx: Context, *, text: str | None) -> None: |