/[sudobot]/trunk/src/client/Client.ts
ViewVC logotype

Diff of /trunk/src/client/Client.ts

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 225 by rakin, Mon Jul 29 17:29:06 2024 UTC revision 227 by rakin, Mon Jul 29 17:29:07 2024 UTC
# Line 23  import SpamFilter from '../automod/SpamF Line 23  import SpamFilter from '../automod/SpamF
23  import Verification from '../services/Verification';  import Verification from '../services/Verification';
24  import Welcomer from '../services/Welcomer';  import Welcomer from '../services/Welcomer';
25  import Antijoin from '../automod/Antijoin';  import Antijoin from '../automod/Antijoin';
26    import Automute from '../automod/Automute';
27    
28  export default class DiscordClient extends Client {  export default class DiscordClient extends Client {
29      private _commands = new Collection<string, BaseCommand>();      private _commands = new Collection<string, BaseCommand>();
# Line 51  export default class DiscordClient exten Line 52  export default class DiscordClient exten
52      verification: Verification;      verification: Verification;
53      welcomer: Welcomer;      welcomer: Welcomer;
54      antijoin: Antijoin;      antijoin: Antijoin;
55        automute: Automute;
56    
57      static client: DiscordClient;      static client: DiscordClient;
58    
# Line 89  export default class DiscordClient exten Line 91  export default class DiscordClient exten
91          this.verification = new Verification(this);          this.verification = new Verification(this);
92          this.welcomer = new Welcomer(this);          this.welcomer = new Welcomer(this);
93          this.antijoin = new Antijoin(this);          this.antijoin = new Antijoin(this);
94            this.automute = new Automute(this);
95                    
96          discordModals(this);                  discordModals(this);        
97      }      }

Legend:
Removed from v.225  
changed lines
  Added in v.227

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26