Browse Source

hype 333

huy
gsd 2 years ago
parent
commit
64bbc0620f
  1. 2
      other_ext/register.py
  2. 4
      player.py

2
other_ext/register.py

@ -7,8 +7,10 @@ import traceback
class Extension: class Extension:
auth_channel = 960796520247091201 auth_channel = 960796520247091201
default_role = 684828780040421388 default_role = 684828780040421388
core = None
def __init__(self, core): def __init__(self, core):
if not os.getenv("REGISTER_ENABLED", None): return None if not os.getenv("REGISTER_ENABLED", None): return None
self.core = core
@core.tree.command(name = "register", description = "Привязать дискорд к стиму") @core.tree.command(name = "register", description = "Привязать дискорд к стиму")
@discord.app_commands.describe(profile=core.ANY_INPUT) @discord.app_commands.describe(profile=core.ANY_INPUT)
async def register( async def register(

4
player.py

@ -108,9 +108,9 @@ class Player:
message = "" message = ""
for d in self.current.get("attached_discords", []): for d in self.current.get("attached_discords", []):
if d['active'] == 1: if d['active'] == 1:
message_head += f"<@{d['discord_id']}> | {utime2human(d['u_time'])}" message_head += f"<@{d['discord_id']}> | {utime2human(d['utime'])}"
else: else:
message += f"<@{d['discord_id']}> | {utime2human(d['u_time'])}" message += f"<@{d['discord_id']}> | {utime2human(d['utime'])}"
if message_head: if message_head:
embed.add_field(name="Привязаный аккаунт Discord:", value=message_head, inline=False) embed.add_field(name="Привязаный аккаунт Discord:", value=message_head, inline=False)

Loading…
Cancel
Save