diff --git a/src/modules/PNJ/commands/Blaise.js b/src/modules/PNJ/commands/Blaise.js index 19d075d..d50d5f9 100644 --- a/src/modules/PNJ/commands/Blaise.js +++ b/src/modules/PNJ/commands/Blaise.js @@ -1,4 +1,4 @@ -import { Command, CommandOptions } from 'axoncore'; +import { Command, CommandOptions, CommandPermissions } from 'axoncore'; class Blaise extends Command { constructor(module) { @@ -20,6 +20,12 @@ class Blaise extends Command { this.options = new CommandOptions(this, { argsMin: 0, } ); + + this.permissions = new CommandPermissions(this, { + guilds: { + needed: ['444277614346108939'], + }, + } ); } async execute( { msg, args } ) { diff --git a/src/modules/PNJ/commands/Celeste.js b/src/modules/PNJ/commands/Celeste.js index 4048fbd..5108a95 100644 --- a/src/modules/PNJ/commands/Celeste.js +++ b/src/modules/PNJ/commands/Celeste.js @@ -1,4 +1,4 @@ -import { Command, CommandOptions } from 'axoncore'; +import { Command, CommandOptions, CommandPermissions } from 'axoncore'; class Celeste extends Command { constructor(module) { @@ -20,6 +20,12 @@ class Celeste extends Command { this.options = new CommandOptions(this, { argsMin: 0, } ); + + this.permissions = new CommandPermissions(this, { + guilds: { + needed: ['444277614346108939'], + }, + } ); } async execute( { msg, args } ) { diff --git a/src/modules/PNJ/commands/Racine.js b/src/modules/PNJ/commands/Racine.js index a811abe..0363296 100644 --- a/src/modules/PNJ/commands/Racine.js +++ b/src/modules/PNJ/commands/Racine.js @@ -1,4 +1,4 @@ -import { Command, CommandOptions } from 'axoncore'; +import { Command, CommandOptions, CommandPermissions } from 'axoncore'; class Racine extends Command { constructor(module) { @@ -20,6 +20,12 @@ class Racine extends Command { this.options = new CommandOptions(this, { argsMin: 0, } ); + + this.permissions = new CommandPermissions(this, { + guilds: { + needed: ['444277614346108939'], + }, + } ); } async execute( { msg, args } ) { diff --git a/src/modules/PNJ/commands/Rounard.js b/src/modules/PNJ/commands/Rounard.js index 27f2740..06aeb3a 100644 --- a/src/modules/PNJ/commands/Rounard.js +++ b/src/modules/PNJ/commands/Rounard.js @@ -1,4 +1,4 @@ -import { Command, CommandOptions } from 'axoncore'; +import { Command, CommandOptions, CommandPermissions } from 'axoncore'; class Rounard extends Command { constructor(module) { @@ -20,6 +20,12 @@ class Rounard extends Command { this.options = new CommandOptions(this, { argsMin: 0, } ); + + this.permissions = new CommandPermissions(this, { + guilds: { + needed: ['444277614346108939'], + }, + } ); } async execute( { msg, args } ) { diff --git a/src/modules/PNJ/commands/Sarah.js b/src/modules/PNJ/commands/Sarah.js index 936d981..fb18a98 100644 --- a/src/modules/PNJ/commands/Sarah.js +++ b/src/modules/PNJ/commands/Sarah.js @@ -1,4 +1,4 @@ -import { Command, CommandOptions } from 'axoncore'; +import { Command, CommandOptions, CommandPermissions } from 'axoncore'; class Sarah extends Command { constructor(module) { @@ -20,6 +20,12 @@ class Sarah extends Command { this.options = new CommandOptions(this, { argsMin: 0, } ); + + this.permissions = new CommandPermissions(this, { + guilds: { + needed: ['444277614346108939'], + }, + } ); } async execute( { msg, args } ) {