Commit bd7f6efb authored by 未闻皂名's avatar 未闻皂名

2025/10/27 bug修复

parent a9a7572e
Pipeline #41293 passed with stages
in 11 minutes and 4 seconds
...@@ -16,7 +16,7 @@ end ...@@ -16,7 +16,7 @@ end
-- 条件: 玩家的主要阶段 -- 条件: 玩家的主要阶段
function RushDuel.IsMainPhase(player) function RushDuel.IsMainPhase(player)
local ph = Duel.GetCurrentPhase() local ph = Duel.GetCurrentPhase()
return Duel.GetTurnPlayer() == player and (ph == PHASE_MAIN1 or ph == PHASE_MAIN2) return (player == nil or Duel.GetTurnPlayer() == player) and (ph == PHASE_MAIN1 or ph == PHASE_MAIN2)
end end
-- 条件: 这张卡召唤的回合 -- 条件: 这张卡召唤的回合
function RushDuel.IsSummonTurn(card) function RushDuel.IsSummonTurn(card)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment