summaryrefslogtreecommitdiffstats
path: root/EssentialsChat/src/com/earth2me/essentials/chat/IEssentialsChatListener.java
blob: e8467fea7dbefa20b696f3920eac945631d7f4ca (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(PlayerChatEvent event, String message);
}