mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-12-17 01:15:52 +01:00
Fixed quests not finishing their questline
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user