红中机器人出牌延时调整

master
zhouwei 2026-02-07 21:10:18 +08:00
parent a03b28196d
commit 44e38446c7
1 changed files with 2 additions and 1 deletions

View File

@ -412,7 +412,8 @@ public class HuNanHongZhong {
System.out.println("目前机器人剩余手牌:" + hongZhongCardInhand.toString()); System.out.println("目前机器人剩余手牌:" + hongZhongCardInhand.toString());
params.putString("session", session + "," + token); params.putString("session", session + "," + token);
int ot = new Random().nextInt(5); //缩短出牌延时
int ot = new Random().nextInt(3);
Thread.sleep(ot * 1000); Thread.sleep(ot * 1000);
client.send("611", params, response -> { client.send("611", params, response -> {