/[sudobot]/trunk/src/App.js
ViewVC logotype

Diff of /trunk/src/App.js

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

revision 10 by rakin, Mon Jul 29 17:28:12 2024 UTC revision 11 by rakin, Mon Jul 29 17:28:13 2024 UTC
# Line 45  class App { Line 45  class App {
45          });          });
46    
47          this.on('messageCreate', async (message) => {          this.on('messageCreate', async (message) => {
48              if (message.author.bot) {              if (message.author.bot || !message.guild || message.channel.type == 'dm') {
49                  return;                  return;
50              }              }
51    
52              await (this.msg = message);              await (this.msg = message);
53                            
54             // await this.spamFilter.start(message);              //await this.spamFilter.start(message);
55    
56              await this.commandManager.setMessage(message);              await this.commandManager.setMessage(message);
57    
58              const valid = await this.commandManager.valid();              const valid = await this.commandManager.valid();
59              const has = await this.commandManager.has();              const has = await this.commandManager.has();
60              const snippet = await this.commandManager.snippet();              const snippet = await this.commandManager.snippet();
61                const allowed = await this.commandManager.verify();
62                            
63              if (valid && has) {              if (valid && has && allowed) {
64                  await this.exec();                  await this.exec();
65              }              }
66              else if (valid && snippet !== undefined) {              else if (valid && snippet !== undefined) {
# Line 70  class App { Line 71  class App {
71              else if (valid && !has) {              else if (valid && !has) {
72                  await this.commandManager.notFound();                  await this.commandManager.notFound();
73              }              }
74                else if (valid && has && !allowed) {
75                    await this.commandManager.notAllowed();
76                }
77          });          });
78    
79          this.on("messageUpdate", async (oldMessage, newMessage) => {          this.on("messageUpdate", async (oldMessage, newMessage) => {

Legend:
Removed from v.10  
changed lines
  Added in v.11

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26