mirror of
https://github.com/PikaMug/Quests.git
synced 2025-01-03 15:08:10 +01:00
Test fix 4 for #130
This commit is contained in:
parent
b5443d9813
commit
be8b52361a
@ -332,8 +332,6 @@ public class Quester {
|
||||
if (questData.containsKey(quest)) {
|
||||
return questData.get(quest);
|
||||
}
|
||||
plugin.getLogger().warning("Data for quest " + quest.name + " returned null");
|
||||
plugin.getLogger().warning(questData.toString());
|
||||
return null;
|
||||
}
|
||||
|
||||
|
@ -2434,7 +2434,7 @@ try{
|
||||
|
||||
for (Quest q : getQuester(player.getUniqueId()).currentQuests.keySet()) {
|
||||
|
||||
if (getQuester(player.getUniqueId()).getQuestData(q) != null);
|
||||
try {
|
||||
|
||||
if (getQuester(player.getUniqueId()).getQuestData(q).delayStartTime == 0) {
|
||||
|
||||
@ -2450,6 +2450,10 @@ try{
|
||||
|
||||
}
|
||||
|
||||
} catch (Exception e) {
|
||||
//TODO find source of NullPointerException from Github ticket #130
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user