From fe30cc5d92aafc43c5ad2a6119e37ff50cca6b46 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Mon, 18 Sep 2017 16:26:36 +0000 Subject: [PATCH] Include minimum level in quest faction cond check. --- .../java/com/l2jmobius/gameserver/model/quest/Quest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/quest/Quest.java b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/quest/Quest.java index f51cc1cd46..144704b1d0 100644 --- a/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/quest/Quest.java +++ b/L2J_Mobius_3.0_Helios/java/com/l2jmobius/gameserver/model/quest/Quest.java @@ -3327,7 +3327,7 @@ public class Quest extends AbstractScript implements IIdentifiable */ public void addFactionLevel(Faction faction, int factionLevel, String html) { - addCondStart(p -> p.getFactionLevel(faction) > factionLevel, html); + addCondStart(p -> p.getFactionLevel(faction) >= factionLevel, html); } public void onQuestAborted(L2PcInstance player)