Skip to content

Commit

Permalink
调包逻辑优化
Browse files Browse the repository at this point in the history
  • Loading branch information
zc-meng authored and CuteReimu committed Sep 4, 2024
1 parent c5c7e18 commit 2780f3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/RobotPlayer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ class RobotPlayer : Player() {
fsm.inFrontOfWhom.willDie(fsm.messageCard) ||
calculateMessageCardValue(fsm.whoseTurn, fsm.inFrontOfWhom, fsm.messageCard, sender = fsm.sender) <= -110) {
val result = calFightPhase(fsm)
if (result != null && result.deltaValue > 10) {
if (result != null && result.deltaValue > 11) {
var actualDelay = 3L
var timeUnit = TimeUnit.SECONDS
if (delay > 0) {
Expand Down

0 comments on commit 2780f3e

Please sign in to comment.