summaryrefslogtreecommitdiffstats
path: root/EssentialsChat/src/com/earth2me/essentials/chat/IEssentialsChatListener.java
blob: 9cd1157e0b0df2494deabc9b959753e92d57c1e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.earth2me.essentials.chat;

import org.bukkit.event.player.PlayerChatEvent;


public interface IEssentialsChatListener
{
	boolean shouldHandleThisChat(PlayerChatEvent event);

	String modifyMessage(String message);
}