diff --git a/cogs/utils/database.py b/cogs/utils/database.py index aa9431a..78638e3 100644 --- a/cogs/utils/database.py +++ b/cogs/utils/database.py @@ -51,7 +51,7 @@ class Cache: """This simulates the database call, to make it easier to get the data""" value = self.values if key: - value = value.get(str(key)) + value = value.get(str(key), {}) if pluck: value = value.get(pluck)