From b1f798ae5bdaba6ee111414da4bd063cc5457665 Mon Sep 17 00:00:00 2001 From: Tastybento Date: Wed, 27 Dec 2017 13:52:52 -0800 Subject: [PATCH] Comment fix. --- .../bskyblock/commands/island/IslandMultiHomeHelp.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/us/tastybento/bskyblock/commands/island/IslandMultiHomeHelp.java b/src/main/java/us/tastybento/bskyblock/commands/island/IslandMultiHomeHelp.java index e95bc5490..f0f6fc317 100644 --- a/src/main/java/us/tastybento/bskyblock/commands/island/IslandMultiHomeHelp.java +++ b/src/main/java/us/tastybento/bskyblock/commands/island/IslandMultiHomeHelp.java @@ -8,7 +8,7 @@ import us.tastybento.bskyblock.config.Settings; import us.tastybento.bskyblock.util.Util; /** - * This is a customer help for the /island go and /island sethome commands. It overrides the default help sub command. + * This is a custom help for the /island go and /island sethome commands. It overrides the default help sub command. * The number of homes can change depending on the player's permissions and config.yml settings. * @author ben * @@ -22,6 +22,7 @@ public class IslandMultiHomeHelp extends CompositeCommand { @Override public void setup() { this.setOnlyPlayer(true); + // Inherit parameters from the respective parent class - in this case, only /island go and /island sethome this.setParameters(parent.getParameters()); this.setDescription(parent.getDescription()); this.setPermission(parent.getPermission()); @@ -29,6 +30,7 @@ public class IslandMultiHomeHelp extends CompositeCommand { @Override public boolean execute(User user, List args) { + // This will only be shown if it is for a player if (user.isPlayer()) { // Get elements String params = getParameters().isEmpty() ? "" : user.getTranslation(getParameters()) + " ";