Commit 22ffa551 authored by 未闻皂名's avatar 未闻皂名

2025/1/11 bug修复

parent 65b6237a
Pipeline #32518 passed with stages
in 12 minutes and 15 seconds
......@@ -108,7 +108,12 @@ end
-- 返回卡组并排序
function RushDuel.SendToDeckSort(target, sequence, reason, sort_player)
local g = RushDuel.ToMaximunGroup(target):Filter(Card.IsAbleToDeck,nil)
local g = RushDuel.ToMaximunGroup(target)
if reason & REASON_COST ~= 0 then
g = g:Filter(Card.IsAbleToDeckAsCost, nil)
else
g = g:Filter(Card.IsAbleToDeck, nil)
end
local ct = 0
if sequence == SEQ_DECKTOP then
ct = Auxiliary.PlaceCardsOnDeckTop(sort_player, g, reason)
......
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