Skip to content

Allow per-player i18n for command help #528

@XHawk87

Description

@XHawk87

Description

I'd like to be able to supply help messages to users for commands in the user's preferred language.

Expected code

new CommandAPICommand("blah")
  .withHelp(makeHelpTopic("blah"))
  .executes( ... )
  .register();
public HelpTopic makeHelpTopic(String commandName) {
  return new HelpTopic() {
    @Override
    public String getFullText(@NotNull CommandSender forWho) {
      // Something something i18n
    }
  }
}

This would be an alternative to .withHelp(String shortDescription, String fullDescription)

Extra details

No response

Metadata

Metadata

Assignees

Labels

enhancementNew feature or requestimplemented for next releaseThis has been implemented in the current dev build for the next public release

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions