WIP: Refactor Aurora (3.0.0) #29
2 changed files with 2 additions and 2 deletions
|
@ -662,7 +662,7 @@ class Aurora(commands.Cog):
|
|||
continue
|
||||
else:
|
||||
for t in registry_values:
|
||||
if await config.custom("types", interaction.guild.id, t.key).show_in_history():
|
||||
if await config.custom("types", interaction.guild.id, t.key).show_in_history() is True:
|
||||
type_list.append(t)
|
||||
|
||||
if target:
|
||||
|
|
|
@ -29,7 +29,7 @@ def register_config(config_obj: Config):
|
|||
)
|
||||
|
||||
moderation_type = {
|
||||
"show_in_history": None,
|
||||
"show_in_history": True,
|
||||
"show_moderator": None,
|
||||
"use_discord_permissions": None,
|
||||
"dm_users": None,
|
||||
|
|
Loading…
Reference in a new issue