Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Commit

Permalink
fix: pointed out things by yoshifan13
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthemaster committed Aug 18, 2020
1 parent ff9a36d commit 3cdbcf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/Owner/Disable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default class extends Command {
usage: '<piece:string>'
});

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) {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/Owner/Eval.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default class extends Command {
constructor(client: MoonlightClient, pool: BasePool<string, Command>) {
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: '<toEval:string>'
});

Expand Down

0 comments on commit 3cdbcf0

Please sign in to comment.