summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/EmergencyPlayerListener.java
blob: 169e9af79e1ea0cdb15949111f15890c11a7aad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.earth2me.essentials.protect;

import org.bukkit.event.player.PlayerJoinEvent;
import org.bukkit.event.player.PlayerListener;

@Deprecated
public class EmergencyPlayerListener extends PlayerListener
{

	@Override
	public void onPlayerJoin(PlayerJoinEvent event)
	{
		event.getPlayer().sendMessage("Essentials Protect is in emergency mode. Check your log for errors.");
	}
	
}