server: Fix stats by using ctx.author.server
Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
parent
8fbd3356c0
commit
11ad5eddcf
3 changed files with 7 additions and 4 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,2 +1,6 @@
|
|||
.idea/
|
||||
.venv/
|
||||
.venv/
|
||||
build/
|
||||
dist/
|
||||
__pycache__/
|
||||
*.spec
|
|
@ -99,7 +99,6 @@ class Client(commands.CommandsClient):
|
|||
if server.banner is not None:
|
||||
banner = extensions.icon_info(server.banner)
|
||||
|
||||
state = server.state # used for statistics
|
||||
await ctx.send(f"## {server.name}\n"
|
||||
f"{description}\n"
|
||||
f"| ID | `{server.id}` |\n| --- | --- |\n"
|
||||
|
@ -108,7 +107,6 @@ class Client(commands.CommandsClient):
|
|||
f"| Server banner | {banner} |\n"
|
||||
f"| Server owner | {server.owner.original_name}#{server.owner.discriminator} |\n"
|
||||
f"---\n| Statistics | Value |\n| --- | --- |\n"
|
||||
f"| Members | {len(state.users)} |\n"
|
||||
f"| Channels | {len(state.channels)} |\n"
|
||||
f"| Members | {len(server.members)} |\n"
|
||||
f"| Roles | {len(server.roles)} |\n"
|
||||
f"| Emojis | {len(server.emojis)} |")
|
||||
|
|
1
main.py
1
main.py
|
@ -4,6 +4,7 @@ import client
|
|||
import asyncio
|
||||
|
||||
from next.ext.commands import DefaultHelpCommand
|
||||
from sys import exit
|
||||
|
||||
|
||||
async def main():
|
||||
|
|
Loading…
Reference in a new issue