mirror of
https://github.com/PikaMug/Quests.git
synced 2024-12-25 18:48:15 +01:00
Catch error for #1214
This commit is contained in:
parent
0f333341da
commit
ffecc74965
@ -3707,6 +3707,7 @@ public class Quester {
|
||||
if (quest == null) {
|
||||
return;
|
||||
}
|
||||
try {
|
||||
if (quest.getOptions().getShareProgressLevel() == 1) {
|
||||
List<Quester> mq = getMultiplayerQuesters(quest);
|
||||
if (mq == null) {
|
||||
@ -3727,6 +3728,10 @@ public class Quester {
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
plugin.getLogger().severe("Error occurred while dispatching " + objectiveType + " for " + quest.getName());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user