Commit 499bb12b authored by 未闻皂名's avatar 未闻皂名

2026/3/1 从手卡盖放魔陷不需要给对方确认

parent b91652c2
Pipeline #43494 passed with stages
in 9 minutes and 21 seconds
......@@ -90,7 +90,12 @@ function RushDuel._set_spell_trap(target, effect, player, break_effect)
if break_effect then
Duel.BreakEffect()
end
return Duel.SSet(player, target)
local confirm = true
-- 全部都是从手卡盖放的场合, 不需要给对方确认
if target:FilterCount(Card.IsLocation, nil, LOCATION_HAND) == #target then
confirm = false
end
return Duel.SSet(player, target, confirm)
end
-- 操作: 选择匹配卡片
......
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