From 64bbc0620faa7f6d4b7dd97cb077ac82c8939e2e Mon Sep 17 00:00:00 2001 From: gsd Date: Tue, 26 Sep 2023 19:15:18 +0300 Subject: [PATCH] hype 333 --- other_ext/register.py | 2 ++ player.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/other_ext/register.py b/other_ext/register.py index 78a70d4..a917c9d 100644 --- a/other_ext/register.py +++ b/other_ext/register.py @@ -7,8 +7,10 @@ import traceback class Extension: auth_channel = 960796520247091201 default_role = 684828780040421388 + core = None def __init__(self, core): if not os.getenv("REGISTER_ENABLED", None): return None + self.core = core @core.tree.command(name = "register", description = "Привязать дискорд к стиму") @discord.app_commands.describe(profile=core.ANY_INPUT) async def register( diff --git a/player.py b/player.py index 2675b88..6449732 100644 --- a/player.py +++ b/player.py @@ -108,9 +108,9 @@ class Player: message = "" for d in self.current.get("attached_discords", []): if d['active'] == 1: - message_head += f"<@{d['discord_id']}> | {utime2human(d['u_time'])}" + message_head += f"<@{d['discord_id']}> | {utime2human(d['utime'])}" else: - message += f"<@{d['discord_id']}> | {utime2human(d['u_time'])}" + message += f"<@{d['discord_id']}> | {utime2human(d['utime'])}" if message_head: embed.add_field(name="Привязаный аккаунт Discord:", value=message_head, inline=False)