diff options
Diffstat (limited to 'bot/exts/fun/magic_8ball.py')
-rw-r--r-- | bot/exts/fun/magic_8ball.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/fun/magic_8ball.py b/bot/exts/fun/magic_8ball.py index 95d711c4..7bb3d886 100644 --- a/bot/exts/fun/magic_8ball.py +++ b/bot/exts/fun/magic_8ball.py @@ -1,13 +1,13 @@ import json -import logging import random from pathlib import Path from discord.ext import commands +from pydis_core.utils.logging import get_logger from bot.bot import Bot -log = logging.getLogger(__name__) +log = get_logger(__name__) ANSWERS = json.loads(Path("bot/resources/fun/magic8ball.json").read_text("utf8")) |