Skip to content

Commit

Permalink
gFeatures 3.3.5 - Bug fix for password.
Browse files Browse the repository at this point in the history
  • Loading branch information
espidev committed Apr 6, 2016
1 parent bc8e826 commit 5e07ca5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: gFeatures
main: net.estinet.gFeatures.Listeners
version: 3.3.4
version: 3.3.5
load: STARTUP
commands:
gFeatures:
Expand Down
2 changes: 1 addition & 1 deletion src/net/estinet/gFeatures/ClioteSky/ClioteConfigUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -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()){
Expand Down
2 changes: 1 addition & 1 deletion src/net/estinet/gFeatures/Listeners.java
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5e07ca5

Please sign in to comment.