Include minimum level in quest faction cond check.
This commit is contained in:
parent
804cf2d643
commit
fe30cc5d92
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user