Skip to content

Commit

Permalink
Merge branch 'nh-server:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
fyredragon69 authored Jan 12, 2025
2 parents 4225f5a + 678679b commit d40304e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion cogs/assistance.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ async def invite(self, ctx: KurisuContext, name: str = ""):
if self.filters.approved_invites:
return await ctx.send(f"Valid server names are: {', '.join(ai.alias for ai in self.filters.approved_invites.values())}")
else:
return await ctx.send("There is no approved servers!")
return await ctx.send("There are no approved servers!")

invite = self.filters.get_invite_named(name)

Expand Down Expand Up @@ -260,6 +260,14 @@ async def ot(self, ctx: GuildContext):
"""Reminds user where they are. (4) Helper+ only"""
await self.send_channel_warn(ctx, self.bot.channels['off-topic'])

@commands.guild_only()
@commands.command(hidden=True)
async def pretendo(self, ctx: GuildContext):
"""information about pretendo so people stop asking"""
await ctx.send("You are in the Nintendo Homebrew Discord server. We have **no official affiliation** with Pretendo.\n"
"There are no Pretendo staff members here. We do not know how to get you unbanned. Ban appeals should be directed [here](<https://forum.pretendo.network>).\n"
"The Pretendo Discord server is located [here](<https://discord.gg/DThgbba>). Detailed instructions for installing Pretendo can be found [here](<https://pretendo.network/docs/install>).")


add_md_files_as_commands(Assistance)
add_md_files_as_commands(Assistance, join(Assistance.data_dir, 'tutorial'), namespace=Assistance.tutorial) # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion cogs/soap.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async def createsoap(self, ctx: GuildContext, helpee: discord.Member):
" - The label also may be under the battery.\n"
" - If you still can't find it, please request further assistance.\n"
"10. Please wait for further instructions.\n"
"### Don't have access to a computer?\n"
"## Don't have access to a computer?\n"
"There is a way to submit your `essential.exefs` using only your hacked 3DS and a WiFi connection, but it's _not preferred_ compared to the above instructions.\n"
"If you need more information about this remote submission method, please let us know in this channel.")
await self.bot.channels['mod-logs'].send(f"⭕️ **🧼 access granted**: {ctx.author.mention} granted access to 🧼 channel to {helpee.mention}")
Expand Down

0 comments on commit d40304e

Please sign in to comment.