mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-28 03:57:37 +01:00
Only check require-same-quest if objectives do not match, fixes #1172
This commit is contained in:
parent
395a1c361e
commit
708d587080
@ -3675,8 +3675,8 @@ public class Quester {
|
||||
}
|
||||
for (Quester q : mq) {
|
||||
if (q.getCurrentStage(quest).containsObjective(objectiveType)) {
|
||||
if (!quest.getOptions().getRequireSameQuest()
|
||||
|| this.getCurrentStage(quest).containsObjective(objectiveType)) {
|
||||
if (this.getCurrentStage(quest).containsObjective(objectiveType)
|
||||
|| !quest.getOptions().getRequireSameQuest()) {
|
||||
fun.apply(q);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user