Fixed quests not finishing their questline

This commit is contained in:
Melledy
2022-05-13 06:24:50 -07:00
parent f4770cf20a
commit a227b44c70
4 changed files with 23 additions and 4 deletions

View File

@@ -15,6 +15,9 @@ public class QuestData extends GameResource {
private int Order;
private long DescTextMapHash;
private boolean FinishParent;
private boolean IsRewind;
private LogicType AcceptCondComb;
private QuestCondition[] acceptConditons;
private LogicType FinishCondComb;
@@ -45,6 +48,14 @@ public class QuestData extends GameResource {
return DescTextMapHash;
}
public boolean finishParent() {
return FinishParent;
}
public boolean isRewind() {
return IsRewind;
}
public LogicType getAcceptCondComb() {
return AcceptCondComb;
}