mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-18 15:18:34 +01:00
Fixes multiple quest complete with multiplayer level 4
This commit is contained in:
parent
2bbae892ec
commit
99597698b1
@ -745,7 +745,9 @@ public class Quest {
|
|||||||
if (opts.getShareProgressLevel() == 4) {
|
if (opts.getShareProgressLevel() == 4) {
|
||||||
List<Quester> mq = q.getMultiplayerQuesters(this);
|
List<Quester> mq = q.getMultiplayerQuesters(this);
|
||||||
for (Quester qq : mq) {
|
for (Quester qq : mq) {
|
||||||
completeQuest(qq);
|
if (qq.getQuestData(this) != null) {
|
||||||
|
completeQuest(qq);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user