Skip to content

Commit

Permalink
修复对弈识别不到问题
Browse files Browse the repository at this point in the history
  • Loading branch information
shui670 committed Jan 29, 2025
1 parent 3efb1ea commit 21279da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/funcList/401_对弈竞猜.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class Func401 implements IFuncOrigin {

// 该规则目前是面灵气喵的固定规则,其他的up还得再看看怎么搞
// 增加关键词,避免拿到体服的
const reg = new RegExp(`周年对弈竞猜.*${nextH}:00.+?([左右红蓝]|翻盘)`);
const reg = new RegExp(`对弈竞猜.*${nextH}:00.+?([左右红蓝]|翻盘)`);
const r = str2.match(reg);
if (r) {
if (r[1] === '红' || r[1] === '左') { // 押左
Expand Down

0 comments on commit 21279da

Please sign in to comment.