mirror of
https://github.com/PikaMug/Quests.git
synced 2024-11-27 13:15:55 +01:00
Return empty list if player has no current stage for quest, fixes #1221
This commit is contained in:
parent
58955e156f
commit
8f72140460
@ -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>();
|
||||||
|
Loading…
Reference in New Issue
Block a user