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 c31e559f23..f51cc1cd46 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)