fix.修复会客室某种线索满了流程出错的问题

This commit is contained in:
MistEO
2022-01-23 02:58:39 +08:00
parent 49954fa33e
commit e31ab73ceb
4 changed files with 43 additions and 2 deletions

View File

@@ -2720,6 +2720,45 @@
100
]
},
"InfrastClueSelfMaybeFull": {
"Doc": "有一种情况是自己的线索满了但是却没有new的标记",
"roi": [
1110,
89,
170,
177
],
"action": "clickSelf",
"next": [
"InfrastClueSelfFull",
"CloseCluePage"
]
},
"InfrastClueSelfFull": {
"roi": [
286,
550,
366,
130
],
"next": [
"CloseCluePageThenSendClue"
]
},
"CloseCluePageThenSendClue": {
"template": "CloseCluePage.png",
"action": "clickSelf",
"roi": [
930,
50,
120,
120
],
"next": [
"CloseCluePageThenSendClue",
"SendClues"
]
},
"InfrastClueSelfNew": {
"template": "ClueNew.png",
"action": "clickSelf",
@@ -3061,7 +3100,9 @@
41
],
"next": [
"InfrastClueSelfNew"
"InfrastClueSelfNew",
"InfrastClueFriendNew",
"ReceptionFlag"
]
},
"ClueGiveToNextPage": {

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

@@ -44,7 +44,7 @@ bool asst::InfrastReceptionTask::close_end_of_clue_exchange()
bool asst::InfrastReceptionTask::get_clue()
{
ProcessTask task_temp(*this, { "InfrastClueSelfNew", "InfrastClueFriendNew", "ReceptionFlag" });
ProcessTask task_temp(*this, { "InfrastClueSelfNew", "InfrastClueFriendNew", "InfrastClueSelfMaybeFull", "ReceptionFlag" });
return task_temp.run();
}