mirror of
https://github.com/shansen/EggCatcher.git
synced 2025-01-05 15:27:59 +01:00
Removed redundant enable/disable messages
This commit is contained in:
parent
afc967a960
commit
4f54f2f9c5
@ -36,22 +36,18 @@ import java.io.IOException;
|
|||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.logging.Logger;
|
|
||||||
|
|
||||||
public class EggCatcher extends JavaPlugin {
|
public class EggCatcher extends JavaPlugin {
|
||||||
public static List<Egg> eggs = new ArrayList<Egg>();
|
public static List<Egg> eggs = new ArrayList<Egg>();
|
||||||
public static Economy economy = null;
|
public static Economy economy = null;
|
||||||
Logger log = Logger.getLogger("Minecraft");
|
|
||||||
|
|
||||||
public void onDisable() {
|
public void onDisable() {
|
||||||
log.info(this.getDescription().getName() + " v" + this.getDescription().getVersion() + " is disabled!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onEnable() {
|
public void onEnable() {
|
||||||
this.CheckUpdate();
|
this.CheckUpdate();
|
||||||
this.CheckConfigurationFile();
|
this.CheckConfigurationFile();
|
||||||
PluginManager pm = this.getServer().getPluginManager();
|
PluginManager pm = this.getServer().getPluginManager();
|
||||||
log.info(this.getDescription().getName() + " v" + this.getDescription().getVersion() + " is enabled!");
|
|
||||||
|
|
||||||
final EggCatcherPlayerListener playerListener = new EggCatcherPlayerListener();
|
final EggCatcherPlayerListener playerListener = new EggCatcherPlayerListener();
|
||||||
final EggCatcherEntityListener entityListener = new EggCatcherEntityListener(this);
|
final EggCatcherEntityListener entityListener = new EggCatcherEntityListener(this);
|
||||||
|
Loading…
Reference in New Issue
Block a user