Skip to content

Commit

Permalink
Minor update to rtfm
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhsm committed Jul 2, 2023
1 parent 8662179 commit 8237eee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dictator/cogs/informational.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def __init__(self, dictator: commands.Bot) -> None:
async def rtfm(self, interaction: discord.Interaction) -> None:
"""Sends basic infoamtion about playing for the first time."""

await interaction.response.send_message(f'Heres the manual to play for the first time\n<https://twohoursonelife.com/first-time-playing>\n\nCheck your messages from me to find your username and password.\n*Can\'t find the message? Use the "/account" command.*')
await interaction.response.send_message(f'How do I play?\nHow do I download?\n\nHeres the manual to play for the first time\n<https://twohoursonelife.com/first-time-playing/?ref=rtfm>\n\nCheck your messages from me to find your username and password.\n*Can\'t find the message? Use the "/account" command.*')

@app_commands.guild_only()
@app_commands.command()
Expand Down
2 changes: 1 addition & 1 deletion dictator/cogs/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async def create_user(self, user: discord.User, username: str = None) -> None:

# Notify the user
try:
await user.send(f'Welcome to 2HOL {user.mention}!\nYou can read how to start playing our game at <https://twohoursonelife.com/first-time-playing>\nWhen you\'re ready, you can use the details below to log in to the game:\n**Username:** {username}\n**Key:** {key}')
await user.send(f'Welcome to 2HOL {user.mention}!\nYou can read how to start playing our game at <https://twohoursonelife.com/first-time-playing?ref=create_acc>\nWhen you\'re ready, you can use the details below to log in to the game:\n**Username:** {username}\n**Key:** {key}')

except:
notify_user = False
Expand Down

0 comments on commit 8237eee

Please sign in to comment.