We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3832fb6 commit 2a75dfbCopy full SHA for 2a75dfb
tux/ui/embeds.py
@@ -5,6 +5,7 @@
5
from loguru import logger
6
7
from tux.bot import Tux
8
+from tux.utils.config import Config
9
from tux.utils.constants import CONST
10
11
@@ -140,7 +141,9 @@ def get_footer(
140
141
user_display_avatar: str | None = None,
142
) -> tuple[str, str | None]:
143
try:
- text: str = f"{user_name}@atl $" if user_name else "tux@atl $"
144
+ text: str = (
145
+ f"{user_name}@discord $" if user_name else f"{Config.BOT_NAME.lower()}@discord $"
146
+ ) # TODO: Make this configurable with the new config system.
147
text += f" {round(bot.latency * 1000)}ms" if bot else ""
148
149
except Exception as e:
0 commit comments