@@ -72,16 +72,18 @@ class Preload:
72
72
tags = person_aliases = group_aliases = persons = groups = twitter_accounts = \
73
73
affiliations = bloodtypes = media = displays = companies = dates = locations = \
74
74
positions = socials = fandoms = languages = eight_ball_responses = notifications = interactions = names = \
75
- auto_media = reminders = reaction_role_messages = True
76
- users = guilds = channels = twitch_subscriptions = twitter_subscriptions = tiktok_subscriptions = False
75
+ auto_media = reminders = reaction_role_messages = banned_phrases = True
76
+ users = guilds = channels = twitch_subscriptions = twitter_subscriptions = \
77
+ tiktok_subscriptions = False
77
78
78
79
force : bool = True
79
80
80
81
def get_evaluation (self ):
81
82
from . import (
82
83
Tag , PersonAlias , GroupAlias , Affiliation , BloodType , Media , Display , Company , Date , Location , Position ,
83
84
Social , Person , User , Channel , Group , Fandom , Guild , TwitchAccount , TwitterAccount , Language ,
84
- EightBallResponse , Notification , Interaction , Name , AutoMedia , Reminder , ReactionRoleMessage , TikTokAccount
85
+ EightBallResponse , Notification , Interaction , Name , AutoMedia , Reminder , ReactionRoleMessage , TikTokAccount ,
86
+ BanPhrase
85
87
)
86
88
87
89
eval_dict = {
@@ -113,7 +115,8 @@ def get_evaluation(self):
113
115
AutoMedia : self .auto_media ,
114
116
Reminder : self .reminders ,
115
117
ReactionRoleMessage : self .reaction_role_messages ,
116
- TikTokAccount : self .tiktok_subscriptions
118
+ TikTokAccount : self .tiktok_subscriptions ,
119
+ BanPhrase : self .banned_phrases
117
120
}
118
121
119
122
eval_dict_only_true = {key : val for key , val in eval_dict .items () if key }
@@ -125,4 +128,4 @@ def all_false(self):
125
128
self .companies = self .dates = self .locations = self .positions = self .socials = self .fandoms = \
126
129
self .channels = self .twitch_subscriptions = self .twitter_subscriptions = self .languages = \
127
130
self .eight_ball_responses = self .notifications = self .interactions = self .names = self .auto_media = \
128
- self .reminders = self .reaction_role_messages = self .tiktok_subscriptions = False
131
+ self .reminders = self .reaction_role_messages = self .tiktok_subscriptions = self . banned_phrases = False
0 commit comments