mirror of
https://github.com/RGBCube/minearchy-bot
synced 2025-07-27 08:57:46 +00:00
Reformat
This commit is contained in:
parent
c1eb216eb5
commit
4e5c4507c8
11 changed files with 952 additions and 945 deletions
|
@ -31,27 +31,27 @@ class MinearchyBot(CommandsBot):
|
||||||
self.webhook_url = webhook_url
|
self.webhook_url = webhook_url
|
||||||
|
|
||||||
self.server = GeyserServer(
|
self.server = GeyserServer(
|
||||||
java_ip="play.minearchy.com",
|
java_ip = "play.minearchy.com",
|
||||||
bedrock_ip="bedrock.minearchy.com",
|
bedrock_ip = "bedrock.minearchy.com",
|
||||||
)
|
)
|
||||||
|
|
||||||
super().__init__(
|
super().__init__(
|
||||||
command_prefix=when_mentioned_or("="),
|
command_prefix = when_mentioned_or("="),
|
||||||
strip_after_prefix=True,
|
strip_after_prefix = True,
|
||||||
case_insensitive=True,
|
case_insensitive = True,
|
||||||
status=Game("on play.minearchy.com"),
|
status = Game("on play.minearchy.com"),
|
||||||
owner_ids={512640455834337290, 160087716757897216},
|
owner_ids = { 512640455834337290, 160087716757897216 },
|
||||||
allowed_mentions=AllowedMentions.none(),
|
allowed_mentions = AllowedMentions.none(),
|
||||||
max_messages=100,
|
max_messages = 100,
|
||||||
intents=Intents(
|
intents = Intents(
|
||||||
guilds=True,
|
guilds = True,
|
||||||
members=True,
|
members = True,
|
||||||
messages=True,
|
messages = True,
|
||||||
message_content=True,
|
message_content = True,
|
||||||
),
|
),
|
||||||
help_attrs=dict(
|
help_attrs = dict(
|
||||||
brief="Sends help.",
|
brief = "Sends help.",
|
||||||
help="Sends all the commands of the bot, or help of a specific command or module.",
|
help = "Sends all the commands of the bot, or help of a specific command or module.",
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -90,10 +90,10 @@ class MinearchyBot(CommandsBot):
|
||||||
async def runner() -> None:
|
async def runner() -> None:
|
||||||
async with self, AIOHTTPSession() as self.session:
|
async with self, AIOHTTPSession() as self.session:
|
||||||
self.log_webhook = Webhook.from_url(
|
self.log_webhook = Webhook.from_url(
|
||||||
self.webhook_url, session=self.session, bot_token=self.token
|
self.webhook_url, session = self.session, bot_token = self.token
|
||||||
)
|
)
|
||||||
await self.load_extensions()
|
await self.load_extensions()
|
||||||
await self.start(self.token, reconnect=True)
|
await self.start(self.token)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
asyncio.run(runner())
|
asyncio.run(runner())
|
||||||
|
|
|
@ -22,8 +22,8 @@ def main() -> None:
|
||||||
env[f"JISHAKU_NO_UNDERSCORE"] = "True"
|
env[f"JISHAKU_NO_UNDERSCORE"] = "True"
|
||||||
|
|
||||||
bot = MinearchyBot(
|
bot = MinearchyBot(
|
||||||
token=config["BOT_TOKEN"],
|
token = config["BOT_TOKEN"],
|
||||||
webhook_url=config["WEBHOOK_URL"]
|
webhook_url = config["WEBHOOK_URL"]
|
||||||
)
|
)
|
||||||
|
|
||||||
bot.run()
|
bot.run()
|
||||||
|
|
|
@ -14,16 +14,16 @@ if TYPE_CHECKING:
|
||||||
|
|
||||||
class MinecraftServer(
|
class MinecraftServer(
|
||||||
Cog,
|
Cog,
|
||||||
name="Minecraft Server",
|
name = "Minecraft Server",
|
||||||
description="Utilities for the Minecraft server.",
|
description = "Utilities for the Minecraft server.",
|
||||||
):
|
):
|
||||||
def __init__(self, bot: MinearchyBot) -> None:
|
def __init__(self, bot: MinearchyBot) -> None:
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
|
|
||||||
@commands.group(
|
@commands.group(
|
||||||
invoke_without_command=True,
|
invoke_without_command = True,
|
||||||
brief="Sends the server IP.",
|
brief = "Sends the server IP.",
|
||||||
help="Sends the server IP.",
|
help = "Sends the server IP.",
|
||||||
)
|
)
|
||||||
async def ip(self, ctx: Context) -> None:
|
async def ip(self, ctx: Context) -> None:
|
||||||
await ctx.reply(
|
await ctx.reply(
|
||||||
|
@ -32,8 +32,8 @@ class MinecraftServer(
|
||||||
)
|
)
|
||||||
|
|
||||||
@ip.command(
|
@ip.command(
|
||||||
brief="Sends the Java edition IP.",
|
brief = "Sends the Java edition IP.",
|
||||||
help="Sends the Java edition IP."
|
help = "Sends the Java edition IP."
|
||||||
)
|
)
|
||||||
async def java(self, ctx: Context) -> None:
|
async def java(self, ctx: Context) -> None:
|
||||||
await ctx.reply(
|
await ctx.reply(
|
||||||
|
@ -42,8 +42,8 @@ class MinecraftServer(
|
||||||
)
|
)
|
||||||
|
|
||||||
@ip.command(
|
@ip.command(
|
||||||
brief="Sends the Bedrock edition IP.",
|
brief = "Sends the Bedrock edition IP.",
|
||||||
help="Sends the Bedrock edition IP.",
|
help = "Sends the Bedrock edition IP.",
|
||||||
)
|
)
|
||||||
async def bedrock(self, ctx: Context) -> None:
|
async def bedrock(self, ctx: Context) -> None:
|
||||||
await ctx.reply(
|
await ctx.reply(
|
||||||
|
@ -53,8 +53,8 @@ class MinecraftServer(
|
||||||
)
|
)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Shows information about the Minecraft server.",
|
brief = "Shows information about the Minecraft server.",
|
||||||
help="Shows the total player count, the Minecraft server IP and the server latency.",
|
help = "Shows the total player count, the Minecraft server IP and the server latency.",
|
||||||
)
|
)
|
||||||
async def status(self, ctx: Context) -> None:
|
async def status(self, ctx: Context) -> None:
|
||||||
status = await self.bot.server.status()
|
status = await self.bot.server.status()
|
||||||
|
@ -68,97 +68,97 @@ class MinecraftServer(
|
||||||
await ctx.reply(message)
|
await ctx.reply(message)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sends the link to the wiki.",
|
brief = "Sends the link to the wiki.",
|
||||||
help="Sends the link to the wiki."
|
help = "Sends the link to the wiki."
|
||||||
)
|
)
|
||||||
async def wiki(self, ctx: Context) -> None:
|
async def wiki(self, ctx: Context) -> None:
|
||||||
view = View()
|
view = View()
|
||||||
view.add_item(
|
view.add_item(
|
||||||
Button(
|
Button(
|
||||||
label="Go to the wiki!",
|
label = "Go to the wiki!",
|
||||||
url="https://landsofminearchy.com/wiki",
|
url = "https://landsofminearchy.com/wiki",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
await ctx.reply(view=view)
|
await ctx.reply(view = view)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sends the link to the store.",
|
brief = "Sends the link to the store.",
|
||||||
help="Sends the link to the store.",
|
help = "Sends the link to the store.",
|
||||||
)
|
)
|
||||||
async def store(self, ctx: Context) -> None:
|
async def store(self, ctx: Context) -> None:
|
||||||
view = View()
|
view = View()
|
||||||
view.add_item(
|
view.add_item(
|
||||||
Button(
|
Button(
|
||||||
label="Go to the store!",
|
label = "Go to the store!",
|
||||||
url="https://landsofminearchy.com/store",
|
url = "https://landsofminearchy.com/store",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
await ctx.reply(view=view)
|
await ctx.reply(view = view)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
aliases=("forums",),
|
aliases = ("forums",),
|
||||||
brief="Sends the link to the forum.",
|
brief = "Sends the link to the forum.",
|
||||||
help="Sends the link to the forum.",
|
help = "Sends the link to the forum.",
|
||||||
)
|
)
|
||||||
async def forum(self, ctx: Context) -> None:
|
async def forum(self, ctx: Context) -> None:
|
||||||
view = View()
|
view = View()
|
||||||
view.add_item(
|
view.add_item(
|
||||||
Button(
|
Button(
|
||||||
label="Go to the forum!",
|
label = "Go to the forum!",
|
||||||
url="https://landsofminearchy.com/forum",
|
url = "https://landsofminearchy.com/forum",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
await ctx.reply(view=view)
|
await ctx.reply(view = view)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
aliases=("map",),
|
aliases = ("map",),
|
||||||
brief="Sends the link to the dynmap.",
|
brief = "Sends the link to the dynmap.",
|
||||||
help="Sends the link to the dynmap.",
|
help = "Sends the link to the dynmap.",
|
||||||
)
|
)
|
||||||
async def dynmap(self, ctx: Context) -> None:
|
async def dynmap(self, ctx: Context) -> None:
|
||||||
view = View()
|
view = View()
|
||||||
view.add_item(
|
view.add_item(
|
||||||
Button(
|
Button(
|
||||||
label="Go to the dynmap!",
|
label = "Go to the dynmap!",
|
||||||
url="https://landsofminearchy.com/dynmap",
|
url = "https://landsofminearchy.com/dynmap",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
await ctx.reply(
|
await ctx.reply(
|
||||||
content="The dynmap is an interactive, live map of our Minecraft server.", view=view
|
content = "The dynmap is an interactive, live map of our Minecraft server.", view = view
|
||||||
)
|
)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sends the links you can use to vote for the Minecraft server.",
|
brief = "Sends the links you can use to vote for the Minecraft server.",
|
||||||
help="Sends the links you can use to vote for the Minecraft server.",
|
help = "Sends the links you can use to vote for the Minecraft server.",
|
||||||
)
|
)
|
||||||
async def vote(self, ctx: Context) -> None:
|
async def vote(self, ctx: Context) -> None:
|
||||||
view = View()
|
view = View()
|
||||||
view.add_item(
|
view.add_item(
|
||||||
Button(
|
Button(
|
||||||
label="Vote for the Minecraft server!",
|
label = "Vote for the Minecraft server!",
|
||||||
url="https://landsofminearchy.com/vote",
|
url = "https://landsofminearchy.com/vote",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
await ctx.reply(view=view)
|
await ctx.reply(view = view)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
name="staff-application",
|
name = "staff-application",
|
||||||
aliases=(
|
aliases = (
|
||||||
"apply",
|
"apply",
|
||||||
"staff-applications",
|
"staff-applications",
|
||||||
),
|
),
|
||||||
brief="Sends the link to the staff application.",
|
brief = "Sends the link to the staff application.",
|
||||||
help="Sends the link to the staff application.",
|
help = "Sends the link to the staff application.",
|
||||||
)
|
)
|
||||||
async def staff_application(self, ctx: Context) -> None:
|
async def staff_application(self, ctx: Context) -> None:
|
||||||
view = View()
|
view = View()
|
||||||
view.add_item(
|
view.add_item(
|
||||||
Button(
|
Button(
|
||||||
label="Apply for staff!",
|
label = "Apply for staff!",
|
||||||
url="https://docs.google.com/forms/d/1I7Rh_e-ZTXm5L51XoKZsOAk7NAJcHomUUCuOlQcARvY/viewform",
|
url = "https://docs.google.com/forms/d/1I7Rh_e-ZTXm5L51XoKZsOAk7NAJcHomUUCuOlQcARvY/viewform",
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
await ctx.reply(view=view)
|
await ctx.reply(view = view)
|
||||||
|
|
||||||
|
|
||||||
async def setup(bot: MinearchyBot) -> None:
|
async def setup(bot: MinearchyBot) -> None:
|
||||||
|
|
|
@ -19,8 +19,8 @@ if TYPE_CHECKING:
|
||||||
|
|
||||||
class Miscellaneous(
|
class Miscellaneous(
|
||||||
Cog,
|
Cog,
|
||||||
name="Miscellaneous",
|
name = "Miscellaneous",
|
||||||
description="Miscellaneous commands.",
|
description = "Miscellaneous commands.",
|
||||||
):
|
):
|
||||||
def __init__(self, bot: MinearchyBot) -> None:
|
def __init__(self, bot: MinearchyBot) -> None:
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
|
@ -32,16 +32,16 @@ class Miscellaneous(
|
||||||
self.bot.help_command.hidden = True
|
self.bot.help_command.hidden = True
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sends the GitHub repository link for the bot.",
|
brief = "Sends the GitHub repository link for the bot.",
|
||||||
help="Sends the GitHub repository link for the bot.",
|
help = "Sends the GitHub repository link for the bot.",
|
||||||
)
|
)
|
||||||
async def github(self, ctx: Context) -> None:
|
async def github(self, ctx: Context) -> None:
|
||||||
# Not a button since I want the embed.
|
# Not a button since I want the embed.
|
||||||
await ctx.reply("https://github.com/RGBCube/minearchy-bot")
|
await ctx.reply("https://github.com/RGBCube/minearchy-bot")
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sends info about the bot.",
|
brief = "Sends info about the bot.",
|
||||||
help="Sends info about the bot."
|
help = "Sends info about the bot."
|
||||||
)
|
)
|
||||||
async def info(self, ctx: Context) -> None:
|
async def info(self, ctx: Context) -> None:
|
||||||
await ctx.reply(
|
await ctx.reply(
|
||||||
|
@ -49,14 +49,14 @@ class Miscellaneous(
|
||||||
f"""
|
f"""
|
||||||
__**Bot Info**__
|
__**Bot Info**__
|
||||||
**Python Version:** v{python_version()}
|
**Python Version:** v{python_version()}
|
||||||
**Uptime:** `{TimeDelta(seconds=int(get_time() - self.bot.ready_timestamp))}`
|
**Uptime:** `{TimeDelta(seconds = int(get_time() - self.bot.ready_timestamp))}`
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sets you as AFK.",
|
brief = "Sets you as AFK.",
|
||||||
help="Sets you as AFK.",
|
help = "Sets you as AFK.",
|
||||||
)
|
)
|
||||||
async def afk(self, ctx: Context) -> None:
|
async def afk(self, ctx: Context) -> None:
|
||||||
# No error because it will un-afk the caller.
|
# No error because it will un-afk the caller.
|
||||||
|
@ -70,7 +70,7 @@ class Miscellaneous(
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
await ctx.author.edit(nick=f"[AFK] {ctx.author.display_name}"[:32])
|
await ctx.author.edit(nick = f"[AFK] {ctx.author.display_name}"[:32])
|
||||||
await ctx.reply("Set your status to AFK. You can now touch grass freely 🌲.")
|
await ctx.reply("Set your status to AFK. You can now touch grass freely 🌲.")
|
||||||
|
|
||||||
@Cog.listener()
|
@Cog.listener()
|
||||||
|
@ -78,8 +78,10 @@ class Miscellaneous(
|
||||||
if not message.author.display_name.upper().startswith("[AFK]"):
|
if not message.author.display_name.upper().startswith("[AFK]"):
|
||||||
return
|
return
|
||||||
|
|
||||||
await message.author.edit(nick=message.author.display_name[5:])
|
await message.author.edit(nick = message.author.display_name[5:])
|
||||||
await message.channel.send(f"Welcome back {message.author.mention}! I've unset your AFK status.")
|
await message.channel.send(
|
||||||
|
f"Welcome back {message.author.mention}! I've unset your AFK status."
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
async def setup(bot: MinearchyBot) -> None:
|
async def setup(bot: MinearchyBot) -> None:
|
||||||
|
|
|
@ -20,8 +20,8 @@ if TYPE_CHECKING:
|
||||||
|
|
||||||
class Moderation(
|
class Moderation(
|
||||||
Cog,
|
Cog,
|
||||||
name="Moderation",
|
name = "Moderation",
|
||||||
description="Moderation commands & utilities.",
|
description = "Moderation commands & utilities.",
|
||||||
):
|
):
|
||||||
def __init__(self, bot: MinearchyBot) -> None:
|
def __init__(self, bot: MinearchyBot) -> None:
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
|
@ -34,11 +34,11 @@ class Moderation(
|
||||||
self.sniped = DefaultDict(Deque)
|
self.sniped = DefaultDict(Deque)
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
aliases=("mute",),
|
aliases = ("mute",),
|
||||||
brief="Times out a user.",
|
brief = "Times out a user.",
|
||||||
help="Times out a user."
|
help = "Times out a user."
|
||||||
)
|
)
|
||||||
@commands.has_permissions(manage_messages=True)
|
@commands.has_permissions(manage_messages = True)
|
||||||
async def timeout(self, ctx: Context, member: Member, duration: str = "1d") -> None:
|
async def timeout(self, ctx: Context, member: Member, duration: str = "1d") -> None:
|
||||||
if duration[-1] not in self.time_values or len(duration) < 2:
|
if duration[-1] not in self.time_values or len(duration) < 2:
|
||||||
await ctx.reply("Invalid duration. Valid durations are: d, h, m, s.")
|
await ctx.reply("Invalid duration. Valid durations are: d, h, m, s.")
|
||||||
|
@ -55,20 +55,21 @@ class Moderation(
|
||||||
|
|
||||||
# This is so cursed but works.
|
# This is so cursed but works.
|
||||||
await member.timeout(
|
await member.timeout(
|
||||||
TimeDelta(**{clean_time_name: time}), reason=f"Timed out by moderator {ctx.author}"
|
TimeDelta(**{ clean_time_name: time }), reason = f"Timed out by moderator {ctx.author}"
|
||||||
)
|
)
|
||||||
|
|
||||||
await ctx.reply(f"Timed out {member.mention} for {time} {clean_time_name}.")
|
await ctx.reply(f"Timed out {member.mention} for {time} {clean_time_name}.")
|
||||||
|
|
||||||
|
# noinspection GrazieInspection
|
||||||
@command(
|
@command(
|
||||||
brief="Sends the latest deleted messages.",
|
brief = "Sends the latest deleted messages.",
|
||||||
help=(
|
help = (
|
||||||
"Sends the last 5 deleted messages in a specified channel.\nIf the channel"
|
"Sends the last 5 deleted messages in a specified channel.\nIf the channel"
|
||||||
" isn't specified, it uses the current channel."
|
" isn't specified, it uses the current channel."
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
# Needs to be able to delete messages to run the command.
|
# Needs to be able to delete messages to run the command.
|
||||||
@commands.has_permissions(manage_messages=True)
|
@commands.has_permissions(manage_messages = True)
|
||||||
async def snipe(self, ctx: Context, channel: TextChannel | None = None) -> None:
|
async def snipe(self, ctx: Context, channel: TextChannel | None = None) -> None:
|
||||||
if channel is None:
|
if channel is None:
|
||||||
channel = ctx.channel
|
channel = ctx.channel
|
||||||
|
@ -83,12 +84,12 @@ class Moderation(
|
||||||
return
|
return
|
||||||
|
|
||||||
embed = Embed(
|
embed = Embed(
|
||||||
title=(
|
title = (
|
||||||
"Showing last 5 deleted messages for"
|
"Showing last 5 deleted messages for"
|
||||||
f" {'the current channel' if ctx.channel.id == channel.id else channel}"
|
f" {'the current channel' if ctx.channel.id == channel.id else channel}"
|
||||||
),
|
),
|
||||||
description="The lower the number is, the more recent it got deleted.",
|
description = "The lower the number is, the more recent it got deleted.",
|
||||||
color=Color.random(),
|
color = Color.random(),
|
||||||
)
|
)
|
||||||
|
|
||||||
zwsp = "\uFEFF"
|
zwsp = "\uFEFF"
|
||||||
|
@ -97,8 +98,8 @@ class Moderation(
|
||||||
message, ts = log
|
message, ts = log
|
||||||
|
|
||||||
embed.add_field(
|
embed.add_field(
|
||||||
name=str(i) + ("" if i else " (latest)"),
|
name = str(i) + ("" if i else " (latest)"),
|
||||||
value=strip(
|
value = strip(
|
||||||
f"""
|
f"""
|
||||||
Author: {message.author.mention} (ID: {message.author.id}, Plain: {escape_markdown(str(message.author))})
|
Author: {message.author.mention} (ID: {message.author.id}, Plain: {escape_markdown(str(message.author))})
|
||||||
Deleted at: <t:{ts}:F> (Relative: <t:{ts}:R>)
|
Deleted at: <t:{ts}:F> (Relative: <t:{ts}:R>)
|
||||||
|
@ -108,10 +109,10 @@ class Moderation(
|
||||||
```
|
```
|
||||||
"""
|
"""
|
||||||
),
|
),
|
||||||
inline=False,
|
inline = False,
|
||||||
)
|
)
|
||||||
|
|
||||||
await ctx.reply(embed=embed)
|
await ctx.reply(embed = embed)
|
||||||
|
|
||||||
@Cog.listener()
|
@Cog.listener()
|
||||||
async def on_message_delete(self, message: Message) -> None:
|
async def on_message_delete(self, message: Message) -> None:
|
||||||
|
|
|
@ -24,33 +24,33 @@ if TYPE_CHECKING:
|
||||||
|
|
||||||
class Utils(
|
class Utils(
|
||||||
Cog,
|
Cog,
|
||||||
name="Utilities",
|
name = "Utilities",
|
||||||
description="Various utilities.",
|
description = "Various utilities.",
|
||||||
):
|
):
|
||||||
def __init__(self, bot: MinearchyBot) -> None:
|
def __init__(self, bot: MinearchyBot) -> None:
|
||||||
self.bot = bot
|
self.bot = bot
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sends the total members in the server.",
|
brief = "Sends the total members in the server.",
|
||||||
help="Sends the total members in the server.",
|
help = "Sends the total members in the server.",
|
||||||
)
|
)
|
||||||
async def members(self, ctx: Context) -> None:
|
async def members(self, ctx: Context) -> None:
|
||||||
await ctx.reply(f"There are `{ctx.guild.member_count}` users in this server.")
|
await ctx.reply(f"There are `{ctx.guild.member_count}` users in this server.")
|
||||||
|
|
||||||
@command(
|
@command(
|
||||||
brief="Sends the bots ping.",
|
brief = "Sends the bots ping.",
|
||||||
help="Sends the bots ping."
|
help = "Sends the bots ping."
|
||||||
)
|
)
|
||||||
async def ping(self, ctx: Context) -> None:
|
async def ping(self, ctx: Context) -> None:
|
||||||
ts = get_monotonic()
|
ts = get_monotonic()
|
||||||
message = await ctx.reply("Pong!")
|
message = await ctx.reply("Pong!")
|
||||||
ts = get_monotonic() - ts
|
ts = get_monotonic() - ts
|
||||||
await message.edit(content=f"Pong! `{int(ts * 1000)}ms`")
|
await message.edit(content = f"Pong! `{int(ts * 1000)}ms`")
|
||||||
|
|
||||||
# Fuck this thing I'm never touching it again.
|
# Fuck this thing I'm never touching it again.
|
||||||
@command(
|
@command(
|
||||||
name="channel-perm-tree",
|
name = "channel-perm-tree",
|
||||||
hidden=True
|
hidden = True
|
||||||
)
|
)
|
||||||
async def channel_perm_tree(self, ctx: Context) -> None:
|
async def channel_perm_tree(self, ctx: Context) -> None:
|
||||||
string = []
|
string = []
|
||||||
|
@ -88,7 +88,9 @@ class Utils(
|
||||||
deny.append(perm)
|
deny.append(perm)
|
||||||
|
|
||||||
if allow or deny:
|
if allow or deny:
|
||||||
perms.append(f" {typ} `{name}`: {thing.id if name != '@everyone' else ''}")
|
perms.append(
|
||||||
|
f" {typ} `{name}`: {thing.id if name != '@everyone' else ''}"
|
||||||
|
)
|
||||||
perms.append(" permissions:")
|
perms.append(" permissions:")
|
||||||
|
|
||||||
for a in allow:
|
for a in allow:
|
||||||
|
@ -200,7 +202,9 @@ class Utils(
|
||||||
deny.append(perm)
|
deny.append(perm)
|
||||||
|
|
||||||
if allow or deny:
|
if allow or deny:
|
||||||
string.append(f" {typ} `{name}`: {thing.id if name != '@everyone' else ''}")
|
string.append(
|
||||||
|
f" {typ} `{name}`: {thing.id if name != '@everyone' else ''}"
|
||||||
|
)
|
||||||
string.append(" permissions:")
|
string.append(" permissions:")
|
||||||
|
|
||||||
for a in allow:
|
for a in allow:
|
||||||
|
@ -215,9 +219,9 @@ class Utils(
|
||||||
# Root perms end.
|
# Root perms end.
|
||||||
|
|
||||||
await ctx.reply(
|
await ctx.reply(
|
||||||
file=File(
|
file = File(
|
||||||
BytesIO("\n".join(string).encode()),
|
BytesIO("\n".join(string).encode()),
|
||||||
filename="channel-perm-tree.txt"
|
filename = "channel-perm-tree.txt"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,9 +4,9 @@ __all__ = ("override",)
|
||||||
|
|
||||||
from typing import Callable, TypeVar
|
from typing import Callable, TypeVar
|
||||||
|
|
||||||
T = TypeVar("T", bound=Callable)
|
T = TypeVar("T", bound = Callable)
|
||||||
|
|
||||||
|
|
||||||
def override(function: T) -> T:
|
def override(function: T) -> T:
|
||||||
"""Basically Java's @Override annotation. Makes stuff less ambiguous."""
|
"""Basically Javas @Override annotation. Makes stuff less ambiguous."""
|
||||||
return function
|
return function
|
||||||
|
|
1516
poetry.lock
generated
1516
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -2,11 +2,11 @@
|
||||||
name = "minearchy-bot"
|
name = "minearchy-bot"
|
||||||
version = "1.0.0"
|
version = "1.0.0"
|
||||||
description = "A simple Discord bot for the Lands of Minearchy Discord server."
|
description = "A simple Discord bot for the Lands of Minearchy Discord server."
|
||||||
authors = [ "RGBCube", "The Lands of Minearchy team" ]
|
authors = ["RGBCube", "The Lands of Minearchy team"]
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.10"
|
python = "^3.10"
|
||||||
"discord.py" = { version = "*", extras = [ "speed" ] }
|
"discord.py" = { version = "*", extras = ["speed"] }
|
||||||
jishaku = "*"
|
jishaku = "*"
|
||||||
mcstatus = "*"
|
mcstatus = "*"
|
||||||
uvloop = "*"
|
uvloop = "*"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue