返回提交历史
Modified
src/controllers/api/saveDialogueController.ts
+7
-1
XFEstudio/XFESpaceNinjaServer
chore: add IOtherDialogueInfo
b8e3be50
代码差异
1 个文件
+7
-1
@@ -81,5 +81,11 @@ interface SaveCompletedDialogueRequest {
81
81
Booleans: string[];
82
82
ResetBooleans: string[];
83
83
Data: ICompletedDialogue;
84
OtherDialogueInfos: string[]; // unsure
84
OtherDialogueInfos: IOtherDialogueInfo[]; // unsure
85
}
86
87
interface IOtherDialogueInfo {
88
Dialogue: string;
89
Tag: string;
90
Value: number;
85
91
}