fix.修复肉鸽源石锭投资满了之后的错误

https://github.com/MistEO/MeoAssistantArknights/issues/186
This commit is contained in:
MistEO
2022-02-01 18:34:00 +08:00
parent a646b9a7f8
commit dc13acd04a
2 changed files with 27 additions and 1 deletions

View File

@@ -4089,8 +4089,12 @@
"rearDelay": 500,
"next": [
"Roguelike1StageTraderInvestSystemError",
"Roguelike1StageTraderInvestSystemFull",
"Roguelike1StageTraderInvestConfirm",
"Roguelike1StageTraderInvestCancel"
],
"exceededNext": [
"Roguelike1StageTraderInvestCancel"
]
},
"Roguelike1StageTraderInvestSystemError": {
@@ -4105,6 +4109,24 @@
"Roguelike1StageTraderInvestCancel"
]
},
"Roguelike1StageTraderInvestSystemFull": {
"algorithm": "OcrDetect",
"cache": false,
"text": [
"当前储备余额已达上限",
"当前",
"上限"
],
"roi": [
982,
28,
298,
289
],
"next": [
"Roguelike1StageTraderInvestCancel"
]
},
"Roguelike1StageTraderInvestCancel": {
"action": "clickSelf",
"roi": [

View File

@@ -1,4 +1,4 @@
// MeoAsstGui - A part of the MeoAssistantArknights project
// MeoAsstGui - A part of the MeoAssistantArknights project
// Copyright (C) 2021 MistEO and Contributors
//
// This program is free software: you can redistribute it and/or modify
@@ -333,6 +333,10 @@ namespace MeoAsstGui
case "Roguelike1StageDreadfulFoe":
mainModel.AddLog("关卡:险路恶敌");
break;
case "Roguelike1StageTraderInvestSystemFull":
mainModel.AddLog("投资达到上限", "darkcyan");
break;
}
}
}