Skip to content

Commit

Permalink
restore owner donator bypass
Browse files Browse the repository at this point in the history
  • Loading branch information
joinemm committed Mar 11, 2024
1 parent 8a5218a commit 387f33c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -860,8 +860,8 @@ async def send_tasks_result_list(


async def user_is_donator(user: discord.User, bot: "MisoBot") -> bool:
# if user.id == bot.owner_id:
# return True
if user.id == bot.owner_id:
return True
if await queries.is_donator(bot, user):
return True
if await queries.is_vip(bot, user):
Expand Down

0 comments on commit 387f33c

Please sign in to comment.