From f37e8dbf17cf4ba63803cc2def3f9b4e275a4dce Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Mon, 25 Sep 2017 10:39:41 +0000 Subject: [PATCH] Proper message for henna removal. --- .../gameserver/model/actor/instance/L2PcInstance.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java b/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java index f37205e286..4f95ed696c 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/com/l2jmobius/gameserver/model/actor/instance/L2PcInstance.java @@ -7967,7 +7967,7 @@ public final class L2PcInstance extends L2Playable } catch (Exception e) { - _log.log(Level.SEVERE, "Failed remocing character henna.", e); + _log.log(Level.SEVERE, "Failed removing character henna.", e); } // Calculate Henna modifiers of this L2PcInstance @@ -7987,7 +7987,7 @@ public final class L2PcInstance extends L2Playable sm.addItemName(henna.getDyeItemId()); sm.addLong(henna.getCancelCount()); sendPacket(sm); - sendPacket(SystemMessageId.YOU_ARE_MOVING_TO_ANOTHER_VILLAGE_DO_YOU_WANT_TO_CONTINUE); + sendPacket(SystemMessageId.THE_SYMBOL_HAS_BEEN_DELETED); // Notify to scripts EventDispatcher.getInstance().notifyEventAsync(new OnPlayerHennaRemove(this, henna), this);