From 1e73890594714c8ef38edeffe49d38951a291fbc Mon Sep 17 00:00:00 2001 From: Pax <37164780+Pax-0@users.noreply.github.com> Date: Sat, 21 Oct 2023 20:04:25 +0300 Subject: [PATCH] add pax to sudoers --- src/commands/eval.ts | 2 +- src/commands/exec.ts | 2 +- src/commands/restart.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/eval.ts b/src/commands/eval.ts index 34a47e7..c3feefc 100644 --- a/src/commands/eval.ts +++ b/src/commands/eval.ts @@ -11,7 +11,7 @@ export default class Eval extends Command { this.aliases = ['e']; this.description = 'Evaluate JavaScript code'; this.enabled = true; - this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665'] }; + this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665', '143414786913206272'] }; this.guildOnly = false; } diff --git a/src/commands/exec.ts b/src/commands/exec.ts index 8aba188..4fae8cc 100644 --- a/src/commands/exec.ts +++ b/src/commands/exec.ts @@ -9,7 +9,7 @@ export default class Exec extends Command { this.description = 'Executes command'; this.aliases = ['ex']; this.enabled = true; - this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665'] }; + this.permissions = { users: ['253600545972027394', '278620217221971968', '239261547959025665', '143414786913206272'] }; this.guildOnly = false; } diff --git a/src/commands/restart.ts b/src/commands/restart.ts index 597a42e..83bf78b 100644 --- a/src/commands/restart.ts +++ b/src/commands/restart.ts @@ -6,7 +6,7 @@ export default class Restart extends Command { super(client); this.name = 'restart'; this.description = 'Restart the bot'; - this.permissions = { users: ['253600545972027394', '278620217221971968'] }; + this.permissions = { users: ['253600545972027394', '278620217221971968', '143414786913206272'] }; this.enabled = true; }