Sync with L2JServer Feb 7th 2015.

This commit is contained in:
mobius
2015-02-07 23:48:56 +00:00
parent 1e166ca657
commit ecd17fdefb
1949 changed files with 3120 additions and 33466 deletions

View File

@@ -18,6 +18,7 @@
*/
package com.l2jserver.gameserver.handler;
import com.l2jserver.gameserver.enums.ChatType;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
/**
@@ -33,11 +34,11 @@ public interface IChatHandler
* @param target
* @param text
*/
public void handleChat(int type, L2PcInstance activeChar, String target, String text);
public void handleChat(ChatType type, L2PcInstance activeChar, String target, String text);
/**
* Returns a list of all chat types registered to this handler
* @return
*/
public int[] getChatTypeList();
public ChatType[] getChatTypeList();
}