Return empty list if player has no current stage for quest, fixes #1221

This commit is contained in:
PikaMug 2020-04-18 17:37:31 -04:00
parent 58955e156f
commit 8f72140460

View File

@ -788,7 +788,7 @@ public class Quester {
} }
} }
} }
if (getQuestData(quest) == null) { if (getQuestData(quest) == null || getCurrentStage(quest) == null) {
return new LinkedList<String>(); return new LinkedList<String>();
} }
LinkedList<String> unfinishedObjectives = new LinkedList<String>(); LinkedList<String> unfinishedObjectives = new LinkedList<String>();