From 411e7e94cb69b50ce136d85bbedabcdb81270b20 Mon Sep 17 00:00:00 2001 From: MobiusDev <8391001+MobiusDevelopment@users.noreply.github.com> Date: Sun, 17 Sep 2017 20:18:07 +0000 Subject: [PATCH] Minor code format change. --- .../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 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)