Unverified Commit 1e649cd8 authored by Melledy's avatar Melledy
Browse files

Delete quests from the player if there are errors loading them from the db

parent c53697da
......@@ -346,6 +346,10 @@ public class GameMainQuest {
public void save() {
DatabaseHelper.saveQuest(this);
}
public void delete() {
DatabaseHelper.deleteQuest(this);
}
public ParentQuest toProto() {
ParentQuest.Builder proto = ParentQuest.newBuilder()
......
......@@ -181,6 +181,7 @@ public class GameQuest {
}
return false;
}
public void save() {
getMainQuest().save();
}
......
......@@ -313,16 +313,27 @@ public class QuestManager extends BasePlayerManager {
}
public void loadFromDatabase() {
List<GameMainQuest> quests = DatabaseHelper.getAllQuests(getPlayer());
for (GameMainQuest mainQuest : quests) {
boolean cancelAdd = false;
mainQuest.setOwner(this.getPlayer());
for (GameQuest quest : mainQuest.getChildQuests().values()) {
QuestData questConfig = GameData.getQuestDataMap().get(quest.getSubQuestId());
if (questConfig == null) {
mainQuest.delete();
cancelAdd = true;
break;
}
quest.setMainQuest(mainQuest);
quest.setConfig(GameData.getQuestDataMap().get(quest.getSubQuestId()));
quest.setConfig(questConfig);
}
this.getMainQuests().put(mainQuest.getParentQuestId(), mainQuest);
if (!cancelAdd) {
this.getMainQuests().put(mainQuest.getParentQuestId(), mainQuest);
}
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment