diff --git a/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java b/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java index 03de6fbe67..c3307049aa 100644 --- a/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java +++ b/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java @@ -166,7 +166,7 @@ public class RestorationRandom extends AbstractEffect } else if (item.getEnchantLevel() > 0) { - sm = new SystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_S2); + sm = new SystemMessage(SystemMessageId.YOU_VE_OBTAINED_S1_S2); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); } diff --git a/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java b/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java index dfc2580127..f8874649cc 100644 --- a/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java +++ b/L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java @@ -241,7 +241,7 @@ public class ExtractableItems implements IItemHandler } else if (item.getEnchantLevel() > 0) { - sm = new SystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_S2); + sm = new SystemMessage(SystemMessageId.YOU_VE_OBTAINED_S1_S2); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); } diff --git a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/actor/Player.java b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/actor/Player.java index 84ca6a47b2..d0df27a5e6 100644 --- a/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/actor/Player.java +++ b/L2J_Mobius_10.2_MasterClass/java/org/l2jmobius/gameserver/model/actor/Player.java @@ -3355,7 +3355,7 @@ public class Player extends Playable } else if (item.getEnchantLevel() > 0) { - final SystemMessage sm = new SystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_S2); + final SystemMessage sm = new SystemMessage(SystemMessageId.YOU_VE_OBTAINED_S1_S2); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); sendPacket(sm); diff --git a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java index 03de6fbe67..c3307049aa 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/effecthandlers/RestorationRandom.java @@ -166,7 +166,7 @@ public class RestorationRandom extends AbstractEffect } else if (item.getEnchantLevel() > 0) { - sm = new SystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_S2); + sm = new SystemMessage(SystemMessageId.YOU_VE_OBTAINED_S1_S2); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); } diff --git a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java index 29de0257a4..4bd262ad91 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/dist/game/data/scripts/handlers/itemhandlers/ExtractableItems.java @@ -255,7 +255,7 @@ public class ExtractableItems implements IItemHandler } else if (item.getEnchantLevel() > 0) { - sm = new SystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_S2); + sm = new SystemMessage(SystemMessageId.YOU_VE_OBTAINED_S1_S2); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); } diff --git a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/actor/Player.java b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/actor/Player.java index aabab5ba34..da392c801d 100644 --- a/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/actor/Player.java +++ b/L2J_Mobius_Essence_6.2_Vanguard/java/org/l2jmobius/gameserver/model/actor/Player.java @@ -3378,7 +3378,7 @@ public class Player extends Playable } else if (item.getEnchantLevel() > 0) { - final SystemMessage sm = new SystemMessage(SystemMessageId.YOU_HAVE_OBTAINED_S1_S2); + final SystemMessage sm = new SystemMessage(SystemMessageId.YOU_VE_OBTAINED_S1_S2); sm.addInt(item.getEnchantLevel()); sm.addItemName(item); sendPacket(sm);