Include minimum level in quest faction cond check.
This commit is contained in:
@@ -3327,7 +3327,7 @@ public class Quest extends AbstractScript implements IIdentifiable
|
|||||||
*/
|
*/
|
||||||
public void addFactionLevel(Faction faction, int factionLevel, String html)
|
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)
|
public void onQuestAborted(L2PcInstance player)
|
||||||
|
Reference in New Issue
Block a user