Skip to content

Commit

Permalink
Update new user message. Resolves #113
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhsm committed Aug 5, 2023
1 parent e52c8d9 commit 5578b49
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions dictator/cogs/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,17 @@ 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?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}"
)
f"Welcome to 2HOL {user.mention}!\n"

"\nPlease know that 2HOL is a moderated community."
"\nWe only ask that you be kind to all players, as you would to a friend."
"\nAll actions are recorded, please make a mod report in Discord if you have issues."
"\nYou can read more on how to start playing [here](<https://twohoursonelife.com/first-time-playing?ref=create_acc>).\n"

"\nWhen you're ready, you can use the details below to log in to the game:"
f"\n**Username:** {username}"
f"\n**Key:** {key}"
)

except:
notify_user = False
Expand Down

0 comments on commit 5578b49

Please sign in to comment.