Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

init soap cog #1358

Merged
merged 8 commits into from
Sep 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
yield outside function moment
eip618 committed Sep 30, 2024

Verified

This commit was signed with the committer’s verified signature.
commit 98c6dd0a1f179bcd636a76a9901405561bc9d3b9
8 changes: 4 additions & 4 deletions cogs/soap.py
Original file line number Diff line number Diff line change
@@ -86,26 +86,26 @@ async def deletesoap(self, ctx: GuildContext, channels: commands.Greedy[discord.
@commands.guild_only()
async def soapnormal(self, ctx: GuildContext):
"""Normal Soap completion message. crc, small help, helper+ only."""
await ctx.send("The SOAP Transfer has completed!\n\n"
await ctx.send("The SOAP Transfer has completed!\n\n"
"Please boot normally (with the SD inserted into the console), and then go to `System Settings -> Other Settings -> Profile -> Region Settings` and ensure the desired country is selected.\n\n"
"Then try opening the eShop.\n\n"
"A system transfer was required to do this SOAP. If you are trying to transfer your old console to this one you will need to wait a week."
"(If you have no interest in a system transfer you may ignore this.)\n\n"
"Please let us know if the eShop functions or not."
)
)

@soap_check()
@commands.guild_only()
async def soaplottery(self, ctx: GuildContext):
"""Lottery Soap completion message. crc, small help, helper+ only."""
await ctx.send("The SOAP Transfer has completed!\n\n"
await ctx.send("The SOAP Transfer has completed!\n\n"
"Please boot normally (with the SD inserted into the console), and then go to `System Settings -> Other Settings -> Profile -> Region Settings` and ensure the desired country is selected.\n\n"
"Then try opening the eShop.\n\n"
"You hit the SOAP lottery! No system transfer was needed for this SOAP.\n\n"
"If you are trying to transfer your old console to this one you can do it right away.\n\n"
"(If you have no interest in a system transfer you may ignore this.)\n\n"
"Please let us know if the eShop functions or not."
)
)


async def setup(bot):