Search in sources :

Example 1 with CommandClanUntrustAllAdmin

use of com.griefdefender.hooks.command.clan.CommandClanUntrustAllAdmin 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();
}
Also used : CommandClanClaim(com.griefdefender.hooks.command.clan.CommandClanClaim) CommandClanUntrust(com.griefdefender.hooks.command.clan.CommandClanUntrust) CommandClanUntrustRank(com.griefdefender.hooks.command.clan.CommandClanUntrustRank) CommandClanTrustRank(com.griefdefender.hooks.command.clan.CommandClanTrustRank) CommandClanTrust(com.griefdefender.hooks.command.clan.CommandClanTrust) CommandClanUntrustAllAdmin(com.griefdefender.hooks.command.clan.CommandClanUntrustAllAdmin) CommandClanTrustAllAdmin(com.griefdefender.hooks.command.clan.CommandClanTrustAllAdmin) CommandClanUntrustAll(com.griefdefender.hooks.command.clan.CommandClanUntrustAll) CommandClanTrustAll(com.griefdefender.hooks.command.clan.CommandClanTrustAll)

Aggregations

CommandClanClaim (com.griefdefender.hooks.command.clan.CommandClanClaim)1 CommandClanTrust (com.griefdefender.hooks.command.clan.CommandClanTrust)1 CommandClanTrustAll (com.griefdefender.hooks.command.clan.CommandClanTrustAll)1 CommandClanTrustAllAdmin (com.griefdefender.hooks.command.clan.CommandClanTrustAllAdmin)1 CommandClanTrustRank (com.griefdefender.hooks.command.clan.CommandClanTrustRank)1 CommandClanUntrust (com.griefdefender.hooks.command.clan.CommandClanUntrust)1 CommandClanUntrustAll (com.griefdefender.hooks.command.clan.CommandClanUntrustAll)1 CommandClanUntrustAllAdmin (com.griefdefender.hooks.command.clan.CommandClanUntrustAllAdmin)1 CommandClanUntrustRank (com.griefdefender.hooks.command.clan.CommandClanUntrustRank)1