From d1efba9abd04cceac0f33495610b13758e4561f4 Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Tue, 19 Apr 2022 12:46:57 -0700 Subject: [PATCH] [Hunting] Fix for global banks --- hunting/hunting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hunting/hunting.py b/hunting/hunting.py index e970e58..f9f071e 100644 --- a/hunting/hunting.py +++ b/hunting/hunting.py @@ -14,7 +14,7 @@ from redbot.core.utils.chat_formatting import (bold, box, humanize_list, from redbot.core.utils.menus import DEFAULT_CONTROLS, menu from redbot.core.utils.predicates import MessagePredicate -__version__ = "3.1.7" +__version__ = "3.1.8" class Hunting(commands.Cog): @@ -55,7 +55,7 @@ class Hunting(commands.Cog): default_user = {"score": {}, "total": 0} self.config.register_user(**default_user) self.config.register_guild(**default_guild) - self.config.register_guild(**default_global) + self.config.register_global(**default_global) @commands.guild_only() @commands.group()