summaryrefslogtreecommitdiffstats
path: root/Essentials2Compat/src/com/earth2me/essentials/Essentials.java
blob: dc612e8d62c413546de990773a9a50374ea0b0b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.");
	}
}