misc(aurora): make show_in_history default to True
All checks were successful
Actions / Build Documentation (MkDocs) (pull_request) Successful in 27s
Actions / Lint Code (Ruff & Pylint) (pull_request) Successful in 41s

This commit is contained in:
Seaswimmer 2024-08-12 18:18:34 -04:00
parent d546fb3371
commit 8822d1714e
Signed by: cswimr
GPG key ID: 3813315477F26F82
2 changed files with 2 additions and 2 deletions

View file

@ -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:

View file

@ -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,