use of com.griefdefender.hooks.command.clan.CommandClanTrustAllAdmin in project GDHooks by bloodmc.
the class GDHooks method registerClanCommands.
public void registerClanCommands() {
this.commandManager.getCommandReplacements().addReplacements("clan-claim", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_CLAIM), "clan-trust", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_TRUST), "clan-trust-all", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_TRUST_ALL), "clan-trust-all-admin", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_TRUST_ALL_ADMIN), "clan-trust-rank", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_TRUST_RANK), "clan-untrust", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_UNTRUST), "clan-untrust-all", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_UNTRUST_ALL), "clan-untrust-all-admin", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_UNTRUST_ALL_ADMIN), "clan-untrust-rank", this.getCommandDescriptionTranslation(MessageConfig.DESCRIPTION_CLAN_UNTRUST_RANK));
this.commandManager.registerCommand(new CommandClanClaim());
this.commandManager.registerCommand(new CommandClanTrustRank());
this.commandManager.registerCommand(new CommandClanTrust());
this.commandManager.registerCommand(new CommandClanTrustAll());
this.commandManager.registerCommand(new CommandClanTrustAllAdmin());
this.commandManager.registerCommand(new CommandClanUntrust());
this.commandManager.registerCommand(new CommandClanUntrustAll());
this.commandManager.registerCommand(new CommandClanUntrustAllAdmin());
this.commandManager.registerCommand(new CommandClanUntrustRank());
this.registerClanCompletions();
}
Aggregations