From 7c664fc9bed0b53f575538c66a896dafaee710c6 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Fri, 28 Aug 2020 11:10:25 +0000 Subject: [PATCH] Minor message improvement related with previous commits. --- .../gameserver/model/actor/instance/PlayerInstance.java | 4 ++-- .../gameserver/model/actor/instance/PlayerInstance.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 1802d4b06b..a0052ada1a 100644 --- a/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_C4_ScionsOfDestiny/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -664,7 +664,7 @@ public class PlayerInstance extends Playable final Siege siege = SiegeManager.getInstance().getSiege(PlayerInstance.this); if ((((siege == null) || !siege.isInProgress()) && ((thisLevel >= 20) && (targetLevel < 20))) || ((thisLevel >= 40) && (targetLevel < 40)) || ((thisLevel >= 52) && (targetLevel < 52)) || ((thisLevel >= 61) && (targetLevel < 61)) || ((thisLevel >= 76) && (targetLevel < 76))) { - sendMessage("You can only engage in PvP if your target is in your level grade."); + sendMessage("You can only engage in PvP if your target is within your level grade."); sendPacket(ActionFailed.STATIC_PACKET); return; } @@ -9864,7 +9864,7 @@ public class PlayerInstance extends Playable final Siege siege = SiegeManager.getInstance().getSiege(this); if ((((siege == null) || !siege.isInProgress()) && ((thisLevel >= 20) && (targetLevel < 20))) || ((thisLevel >= 40) && (targetLevel < 40)) || ((thisLevel >= 52) && (targetLevel < 52)) || ((thisLevel >= 61) && (targetLevel < 61)) || ((thisLevel >= 76) && (targetLevel < 76))) { - sendMessage("You can only engage in PvP if your target is in your level grade."); + sendMessage("You can only engage in PvP if your target is within your level grade."); sendPacket(ActionFailed.STATIC_PACKET); return; } diff --git a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 65fc26636c..0c2c49df62 100644 --- a/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_C6_Interlude/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -678,7 +678,7 @@ public class PlayerInstance extends Playable final Siege siege = SiegeManager.getInstance().getSiege(PlayerInstance.this); if ((((siege == null) || !siege.isInProgress()) && ((thisLevel >= 20) && (targetLevel < 20))) || ((thisLevel >= 40) && (targetLevel < 40)) || ((thisLevel >= 52) && (targetLevel < 52)) || ((thisLevel >= 61) && (targetLevel < 61)) || ((thisLevel >= 76) && (targetLevel < 76))) { - sendMessage("You can only engage in PvP if your target is in your level grade."); + sendMessage("You can only engage in PvP if your target is within your level grade."); sendPacket(ActionFailed.STATIC_PACKET); return; } @@ -10034,7 +10034,7 @@ public class PlayerInstance extends Playable final Siege siege = SiegeManager.getInstance().getSiege(this); if ((((siege == null) || !siege.isInProgress()) && ((thisLevel >= 20) && (targetLevel < 20))) || ((thisLevel >= 40) && (targetLevel < 40)) || ((thisLevel >= 52) && (targetLevel < 52)) || ((thisLevel >= 61) && (targetLevel < 61)) || ((thisLevel >= 76) && (targetLevel < 76))) { - sendMessage("You can only engage in PvP if your target is in your level grade."); + sendMessage("You can only engage in PvP if your target is within your level grade."); sendPacket(ActionFailed.STATIC_PACKET); return; }