From bd93dc0ac6c5e7ced829e53928b1499f1367363d Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Sun, 11 Dec 2016 08:11:25 +0000 Subject: [PATCH] Removed visibility check for join party. --- .../gameserver/network/clientpackets/RequestJoinParty.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java b/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java index ca81ff8dcb..fee5733532 100644 --- a/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java +++ b/L2J_Mobius_Underground/java/com/l2jmobius/gameserver/network/clientpackets/RequestJoinParty.java @@ -86,12 +86,6 @@ public final class RequestJoinParty implements IClientIncomingPacket return; } - if (!target.isVisibleFor(requestor)) - { - requestor.sendPacket(SystemMessageId.THAT_IS_AN_INCORRECT_TARGET); - return; - } - if (requestor.isOnEvent(CeremonyOfChaosEvent.class)) { client.sendPacket(SystemMessageId.YOU_CANNOT_INVITE_A_FRIEND_OR_PARTY_WHILE_PARTICIPATING_IN_THE_CEREMONY_OF_CHAOS);