From 85c0e1fddaefda28f9be4b55d40ce56b940cdd87 Mon Sep 17 00:00:00 2001 From: Florian CUNY Date: Sun, 22 Dec 2019 21:48:13 +0100 Subject: [PATCH] Added new aliases for commands (player: skyblock, sb; admin:skyblockadmin, sbadmin, sba) These come from other skyblock plugins that some users might have used before coming on BSkyBlock --- src/main/java/world/bentobox/bskyblock/Settings.java | 4 ++-- src/main/resources/config.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/world/bentobox/bskyblock/Settings.java b/src/main/java/world/bentobox/bskyblock/Settings.java index 4a24388..a3141c8 100644 --- a/src/main/java/world/bentobox/bskyblock/Settings.java +++ b/src/main/java/world/bentobox/bskyblock/Settings.java @@ -33,12 +33,12 @@ public class Settings implements WorldSettings { @ConfigComment("Island Command. What command users will run to access their island.") @ConfigComment("To define alias, just separate commands with white space.") @ConfigEntry(path = "bskyblock.command.island") - private String islandCommand = "island is"; + private String islandCommand = "island is skyblock sb"; @ConfigComment("The island admin command.") @ConfigComment("To define alias, just separate commands with white space.") @ConfigEntry(path = "bskyblock.command.admin") - private String adminCommand = "bsbadmin bsb"; + private String adminCommand = "bsbadmin bsb skyblockadmin sbadmin sba"; /* WORLD */ @ConfigComment("Friendly name for this world. Used in admin commands. Must be a single word") diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 749967e..70895c5 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -3,10 +3,10 @@ bskyblock: command: # Island Command. What command users will run to access their island. # To define alias, just separate commands with white space. - island: island is + island: island is skyblock sb # The island admin command. # To define alias, just separate commands with white space. - admin: bsbadmin bsb + admin: bsbadmin bsb skyblockadmin sbadmin sba world: # Friendly name for this world. Used in admin commands. Must be a single word friendly-name: BSkyBlock