Renamed TELL and NPC_TELL chat types, also fixed minor typo in L2PcInstance.
Source L2J Ertheia branch: https://github.com/L2J/L2J_Server/commit/48e9f32edeb586e694bea53da1606602bc1f0b15 https://github.com/L2J/L2J_DataPack/commit/9e6d13a293dcae148df7734032841c8801385121
This commit is contained in:
+2
-2
@@ -37,9 +37,9 @@ import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
|
||||
* General Chat Handler.
|
||||
* @author durgus
|
||||
*/
|
||||
public final class ChatAll implements IChatHandler
|
||||
public final class ChatGeneral implements IChatHandler
|
||||
{
|
||||
private static Logger _log = Logger.getLogger(ChatAll.class.getName());
|
||||
private static Logger _log = Logger.getLogger(ChatGeneral.class.getName());
|
||||
|
||||
private static final ChatType[] CHAT_TYPES =
|
||||
{
|
||||
+2
-2
@@ -33,11 +33,11 @@ import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
|
||||
* Tell chat handler.
|
||||
* @author durgus
|
||||
*/
|
||||
public final class ChatTell implements IChatHandler
|
||||
public final class ChatWhisper implements IChatHandler
|
||||
{
|
||||
private static final ChatType[] CHAT_TYPES =
|
||||
{
|
||||
ChatType.TELL,
|
||||
ChatType.WHISPER
|
||||
};
|
||||
|
||||
@Override
|
||||
@@ -43,7 +43,7 @@ public final class ChatWorld implements IChatHandler
|
||||
|
||||
private static final ChatType[] CHAT_TYPES =
|
||||
{
|
||||
ChatType.GLOBAL,
|
||||
ChatType.WORLD,
|
||||
};
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user