From 5e07ca5160408a6fa6610a634049f2b0ac8f4d83 Mon Sep 17 00:00:00 2001 From: _InDev_ Date: Wed, 6 Apr 2016 18:18:46 -0400 Subject: [PATCH] gFeatures 3.3.5 - Bug fix for password. --- plugin.yml | 2 +- src/net/estinet/gFeatures/ClioteSky/ClioteConfigUtil.java | 2 +- src/net/estinet/gFeatures/Listeners.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin.yml b/plugin.yml index 2816a6a3..c8e991ba 100644 --- a/plugin.yml +++ b/plugin.yml @@ -1,6 +1,6 @@ name: gFeatures main: net.estinet.gFeatures.Listeners -version: 3.3.4 +version: 3.3.5 load: STARTUP commands: gFeatures: diff --git a/src/net/estinet/gFeatures/ClioteSky/ClioteConfigUtil.java b/src/net/estinet/gFeatures/ClioteSky/ClioteConfigUtil.java index 85b44337..26e87533 100644 --- a/src/net/estinet/gFeatures/ClioteSky/ClioteConfigUtil.java +++ b/src/net/estinet/gFeatures/ClioteSky/ClioteConfigUtil.java @@ -17,7 +17,7 @@ public void load(){ ClioteSky.setCategory(yamlFile.get("Config.ClioteSky.Category").toString()); ClioteSky.setAddress(yamlFile.get("Config.ClioteSky.Address").toString()); ClioteSky.setEnable(Boolean.parseBoolean(yamlFile.get("Config.ClioteSky.Enable").toString())); - ClioteSky.setPassword(yamlFile.get("Config.ClioteSky.Name").toString()); + ClioteSky.setPassword(yamlFile.get("Config.ClioteSky.Password").toString()); ClioteSky.setPort(yamlFile.get("Config.ClioteSky.Port").toString()); File file = new File("plugins/gFeatures/cliotecache.txt"); if(!file.exists()){ diff --git a/src/net/estinet/gFeatures/Listeners.java b/src/net/estinet/gFeatures/Listeners.java index f57f5aad..bb735781 100644 --- a/src/net/estinet/gFeatures/Listeners.java +++ b/src/net/estinet/gFeatures/Listeners.java @@ -56,7 +56,7 @@ */ public class Listeners extends JavaPlugin implements Listener{ - public static final String version = "3.3.4"; + public static final String version = "3.3.5"; public static boolean debug = false; PluginManager pm = getServer().getPluginManager();