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

Commit

Permalink
fix(command): removed uppercase u
Browse files Browse the repository at this point in the history
  • Loading branch information
Tricked-dev committed Jun 14, 2021
1 parent 08d70a8 commit 751b689
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/struct/commands/Command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class NaticoCommand extends NaticoModule {
superUserOnly: boolean | undefined;
options?: ArgOptions[];
clientPermissions: PermissionStrings[] | undefined;
UserPermissions: PermissionStrings[] | undefined;
userPermissions: PermissionStrings[] | undefined;

constructor(
id: string,
Expand All @@ -32,7 +32,7 @@ export class NaticoCommand extends NaticoModule {
superUserOnly,
options,
clientPermissions,
UserPermissions,
userPermissions,
}: {
options?: ArgOptions[];

Expand All @@ -45,7 +45,7 @@ export class NaticoCommand extends NaticoModule {
ownerOnly?: boolean;
superUserOnly?: boolean;
clientPermissions?: PermissionStrings[];
UserPermissions?: PermissionStrings[];
userPermissions?: PermissionStrings[];
}
) {
super(id);
Expand All @@ -57,7 +57,7 @@ export class NaticoCommand extends NaticoModule {
this.name = name?.toLowerCase() || id.toLowerCase();
this.examples = examples || [`${name}`];
this.clientPermissions = clientPermissions;
this.UserPermissions = UserPermissions;
this.userPermissions = UserPermissions;
this.id = id;

this.aliases = aliases || [this.id];
Expand Down

0 comments on commit 751b689

Please sign in to comment.