Merge remote-tracking branch 'origin/master'

master
Matthew 2023-10-31 18:20:46 -04:00
commit 81f58cab27
Signed by: matthew
SSH Key Fingerprint: SHA256:piIXekA9q1p0ZGi4ogFbNY1embip5Ytbi3v8AZ8UYq4
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ export default class Eval extends Command {
this.aliases = ['e']; this.aliases = ['e'];
this.description = 'Evaluate JavaScript code'; this.description = 'Evaluate JavaScript code';
this.enabled = true; this.enabled = true;
this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665'] }; this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665', '143414786913206272'] };
this.guildOnly = false; this.guildOnly = false;
} }

View File

@ -9,7 +9,7 @@ export default class Exec extends Command {
this.description = 'Executes command'; this.description = 'Executes command';
this.aliases = ['ex']; this.aliases = ['ex'];
this.enabled = true; this.enabled = true;
this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665'] }; this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665', '143414786913206272'] };
this.guildOnly = false; this.guildOnly = false;
} }

View File

@ -6,7 +6,7 @@ export default class Restart extends Command {
super(client); super(client);
this.name = 'restart'; this.name = 'restart';
this.description = 'Restart the bot'; this.description = 'Restart the bot';
this.permissions = { users: ['253600545972027394', '278620217221971968'] }; this.permissions = { users: ['253600545972027394', '278620217221971968', '143414786913206272'] };
this.enabled = true; this.enabled = true;
} }