diff --git a/RedisBungee-API/src/main/resources/config.yml b/RedisBungee-API/src/main/resources/config.yml index 8c5eb99..81f93c5 100644 --- a/RedisBungee-API/src/main/resources/config.yml +++ b/RedisBungee-API/src/main/resources/config.yml @@ -49,7 +49,7 @@ proxy-id: "proxy-1" # since version 0.8.0 Internally now uses JedisPooled instead of Jedis, JedisPool. # which will break compatibility with old plugins that uses RedisBungee JedisPool -# so to mitigate this issue, we will instruct RedisBungee to init an JedisPool for compatibility reasons. +# so to mitigate this issue, RedisBungee will create an JedisPool for compatibility reasons. # disabled by default # ignored when cluster mode is enabled enable-jedis-pool-compatibility: false diff --git a/RedisBungee-API/src/main/resources/lang.yml b/RedisBungee-API/src/main/resources/lang.yml index e5013f6..2d6e76e 100644 --- a/RedisBungee-API/src/main/resources/lang.yml +++ b/RedisBungee-API/src/main/resources/lang.yml @@ -25,6 +25,7 @@ default-language: en # https://minecraft.fandom.com/wiki/Language use-client-language: true +# messages messages: logged-in-other-location: en: "You logged in from another location!" @@ -36,4 +37,18 @@ messages: en: "Connecting you to %s..." -# commands: +# commands common messages: +commands-common: + player-not-found: + en: "Player not found." + player-not-specified: + en: "You must specify a player name." + command-not-specified: + en: "You must specify a command to be run." + +# commands +#commands: +# + + + diff --git a/RedisBungee-Bungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java b/RedisBungee-Bungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java index 74f5d9b..7790b37 100644 --- a/RedisBungee-Bungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java +++ b/RedisBungee-Bungee/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java @@ -185,6 +185,8 @@ public class RedisBungee extends Plugin implements RedisBungeePlugin, Con this.server = server; this.logger = logger; this.dataFolder = dataDirectory; + logInfo("Version: {}", Constants.VERSION); + logInfo("Build date: {}", Constants.BUILD_DATE); try { loadConfig(this, dataDirectory); } catch (IOException e) { @@ -252,7 +254,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin, Con @Override public void initialize() { - logInfo("Initializing RedisBungee....."); + logInfo("Initializing RedisBungee.....");; // start heartbeat task // heartbeat and clean up this.heartbeatTask = server.getScheduler().buildTask(this, this.proxyDataManager::publishHeartbeat).repeat(Duration.ofSeconds(1)).schedule();