Fixed PartyPledge affect scope including non clan members.
This commit is contained in:
L2J_Mobius_5.0_Salvation/dist/game/data/scripts/handlers/targethandlers/affectscope/PartyPledge.java
Vendored
+1
-1
@@ -71,7 +71,7 @@ public class PartyPledge implements IAffectScopeHandler
|
||||
{
|
||||
final Party pParty = p.getParty();
|
||||
final int pClanId = p.getClanId();
|
||||
if (((pClanId == 0) && (pParty == null)) || ((clanId != pClanId) && (party != pParty)))
|
||||
if ((pParty == null) || ((clanId != pClanId) && (party != pParty)))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user