From 217713bbfbba395e399155d7c4df1ba105ca25ce Mon Sep 17 00:00:00 2001 From: Sakimori Date: Sat, 6 Mar 2021 12:27:27 -0500 Subject: [PATCH] really fixed it --- the_prestige.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/the_prestige.py b/the_prestige.py index ed95dd9..3da20fe 100644 --- a/the_prestige.py +++ b/the_prestige.py @@ -549,7 +549,7 @@ class AssignOwnerCommand(Command): return user.id in config()["owners"] async def execute(self, msg, command): - if isauthorized(msg.author): + if self.isauthorized(msg.author): new_owner = msg.mentions[0] team_name = command.strip().split("> ",1)[1] if db.assign_owner(team_name, new_owner.id):