summaryrefslogtreecommitdiffstats
path: root/Essentials2Compat/src/com/earth2me/essentials/Essentials.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials2Compat/src/com/earth2me/essentials/Essentials.java')
-rw-r--r--Essentials2Compat/src/com/earth2me/essentials/Essentials.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/Essentials2Compat/src/com/earth2me/essentials/Essentials.java b/Essentials2Compat/src/com/earth2me/essentials/Essentials.java
new file mode 100644
index 000000000..dc612e8d6
--- /dev/null
+++ b/Essentials2Compat/src/com/earth2me/essentials/Essentials.java
@@ -0,0 +1,22 @@
+package com.earth2me.essentials;
+
+import org.bukkit.Bukkit;
+import org.bukkit.plugin.java.JavaPlugin;
+
+
+public class Essentials extends JavaPlugin
+{
+ @Override
+ public void onEnable()
+ {
+ Bukkit.getLogger().info("You can remove this compatibility plugin, when all plugins are updated to Essentials 3");
+ //TODO: Update files to new 3.0 format
+ //TODO: Move Eco Api here
+ }
+
+ @Override
+ public void onDisable()
+ {
+ throw new UnsupportedOperationException("Not supported yet.");
+ }
+}