add pax to sudoers

pull/15/head
Pax 2023-10-21 20:04:25 +03:00
parent 84bdaae2d2
commit 1e73890594
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;
} }