mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 18:47:55 +08:00
fix: 修复信用购物黑名单不填写时,不进行购物的问题
fix https://github.com/MaaAssistantArknights/MaaAssistantArknights/issues/1042
This commit is contained in:
@@ -73,7 +73,7 @@ bool asst::CreditShopImageAnalyzer::whether_to_buy_analyze()
|
||||
ocr_analyzer.set_required(m_shopping_list);
|
||||
if (ocr_analyzer.analyze()) {
|
||||
// 黑名单模式,有识别结果说明这个商品不买,直接跳过
|
||||
if (!m_is_white_list) {
|
||||
if (!m_is_white_list && !m_shopping_list.empty()) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user