Skip to content

Commit

Permalink
Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
espidev committed May 23, 2015
1 parent 0a27a01 commit c3b0a41
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 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.genesishub.gFeatures.Listeners
version: 2.3.2
version: 2.3.4
load: STARTUP
commands:
gFeatures:
Expand Down
2 changes: 2 additions & 0 deletions src/net/genesishub/gFeatures/Basic.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import java.util.HashMap;
import java.util.List;

import org.bukkit.Bukkit;

import net.genesishub.gFeatures.API.PlayerStats.gPlayer;

/*
Expand Down
18 changes: 9 additions & 9 deletions src/net/genesishub/gFeatures/Listeners.java
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
*/

public class Listeners extends JavaPlugin implements Listener{
public static final String version = "2.3.3";
public static final String version = "2.3.4";

PluginManager pm = getServer().getPluginManager();
Enabler enable = new Enabler();
Expand All @@ -58,27 +58,27 @@ public class Listeners extends JavaPlugin implements Listener{
public void onEnable(){
pm.registerEvents(this, this);
getLogger().info("_________________________________________________________________________");
getLogger().info("[gFeatures] Initalizing gFeatures Core");
getLogger().info("[gFeatures] This server is running gFeatures Core Version: " + version);
getLogger().info("[gFeatures] Starting modules...");
getLogger().info("Initalizing gFeatures.");
getLogger().info("This server is running gFeatures Core Version: " + version);
getLogger().info("Starting intialization of Features and Extensions...");
setup.onSetup();
SetupConfig.setup();
LoadConfig.load();
enable.onEnable();
Basic.addPlayerSection("Setup", "DO NOT REMOVE!");
ch.setupConfig();
ch.loadConfig();
getLogger().info("[gFeatures] Complete! Continuing Server startup routine...");
getLogger().info(" Complete!");
getLogger().info("_________________________________________________________________________");
}
@Override
public void onDisable(){
getLogger().info("_________________________________________________________________________");
getLogger().info("[gFeatures] Stopping gFeatures Core!");
getLogger().info("[gFeatures] This server is running gFeatures Core Version: " + version);
getLogger().info("[gFeatures] Turning off modules...");
getLogger().info("Stopping gFeatures Core!");
getLogger().info("This server is running gFeatures Core Version: " + version);
getLogger().info("Turning off modules...");
disable.onDisable();
getLogger().info("[gFeatures] Complete!");
getLogger().info("Complete!");
getLogger().info("_________________________________________________________________________");
}
@EventHandler
Expand Down

0 comments on commit c3b0a41

Please sign in to comment.