From cc012cd27488d936cdd11ad8349f692b47a20357 Mon Sep 17 00:00:00 2001 From: Andrei Date: Thu, 16 Feb 2017 11:22:05 -0800 Subject: [PATCH] pass bot instance to commands_level_getter --- disco/bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/bot/bot.py b/disco/bot/bot.py index 5b664a6..4d43a27 100644 --- a/disco/bot/bot.py +++ b/disco/bot/bot.py @@ -295,7 +295,7 @@ class Bot(LoggingClass): level = CommandLevels.DEFAULT if callable(self.config.commands_level_getter): - level = self.config.commands_level_getter(actor) + level = self.config.commands_level_getter(self, actor) else: if actor.id in self.config.levels: level = self.config.levels[actor.id]