Skip to content
This repository has been archived by the owner on Jun 27, 2019. It is now read-only.

Commit

Permalink
Fixed error in watchlist adduser
Browse files Browse the repository at this point in the history
  • Loading branch information
Galarzaa90 committed Jan 24, 2019
1 parent d6296fb commit d41e8bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,7 @@ async def watchlist_adduser(self, ctx: NabCtx, channel: discord.TextChannel, *,

user = ctx.bot.get_member(name, ctx.guild)
if user is None:
await ctx.error("I don't see any users with that name.")
return await ctx.error("I don't see any users with that name.")
characters = await DbChar.get_chars_by_user(ctx.pool, user.id, worlds=ctx.world)
if not characters:
await ctx.error(f"This user doesn't have any registered characters in {ctx.world}.")
Expand Down

0 comments on commit d41e8bd

Please sign in to comment.