diff --git a/src/commands/Owner/Disable.ts b/src/commands/Owner/Disable.ts index 3eee55ae..0f2024b8 100644 --- a/src/commands/Owner/Disable.ts +++ b/src/commands/Owner/Disable.ts @@ -12,7 +12,7 @@ export default class extends Command { usage: '' }); - this.customizeResponse('piece', 'Please provide a piece name to enable!'); + this.customizeResponse('piece', 'Please provide a piece name to disable!'); } public async run(message: Message, args: DisableCommandArgs) { diff --git a/src/commands/Owner/Eval.ts b/src/commands/Owner/Eval.ts index 1d6c38db..72d96711 100644 --- a/src/commands/Owner/Eval.ts +++ b/src/commands/Owner/Eval.ts @@ -10,7 +10,7 @@ export default class extends Command { constructor(client: MoonlightClient, pool: BasePool) { super(client, pool, { ownerOnly: true, - description: "Evaluates JavaScript. You can use the --async flag to be able to use await inside the command (be sure to have a return statement!) or the --inspect=number (number being the depth of the inspection) flag to display more things inside an object!", + description: "Evaluates JavaScript. You can use the --async flag to be able to use await inside the command (make sure you have a return statement!) or the --inspect=number (number being the depth of the inspection) flag to display more things inside an object!", usage: '' });