Skip to content

Commit

Permalink
chore: update locale
Browse files Browse the repository at this point in the history
  • Loading branch information
KagChi committed Aug 7, 2023
1 parent ea0d110 commit cac763c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Languages/en-id/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ export class EnID extends LanguagePiece {
}

public get interactionHandlers(): EnUsInteractionHandlers {
return this.container.stores.get("languages").get("en-US/interaction-handlers") as EnUsInteractionHandlers;
return this.container.stores.get("languages").get("en-ID/interaction-handlers") as EnUsInteractionHandlers;
}

public get commands(): EnUsCommands {
return this.container.stores.get("languages").get("en-US/commands") as EnUsCommands;
return this.container.stores.get("languages").get("en-ID/commands") as EnUsCommands;
}

public get preconditions(): EnUsPreconditions {
return this.container.stores.get("languages").get("en-US/preconditions") as EnUsPreconditions;
return this.container.stores.get("languages").get("en-ID/preconditions") as EnUsPreconditions;
}

public get player(): EnUsPlayer {
return this.container.stores.get("languages").get("en-US/player") as EnUsPlayer;
return this.container.stores.get("languages").get("en-ID/player") as EnUsPlayer;
}
}

0 comments on commit cac763c

Please sign in to comment.