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

2026/2/21 bug修复

parent 5fadb1ec
Pipeline #43362 passed with stages
in 6 minutes and 54 seconds
......@@ -174,6 +174,12 @@ function RushDuel.FusionProcedureCondition(sub, insf, funcs, rep, min, max, chec
Duel.SetSelectedCard(gc)
end
local minc, maxc = #funcs + min, #funcs + max
if RushDuel.MinFusionMaterialCount ~= nil and maxc < RushDuel.MinFusionMaterialCount then
return false
end
if RushDuel.MaxFusionMaterialCount ~= nil and minc > RushDuel.MaxFusionMaterialCount then
return false
end
return mg:CheckSubGroup(RushDuel.FusionProcedureMaterialChecker, minc, maxc, tp, c, chkfnf, sub, funcs, rep, checker)
end
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