Commit 8ee9b754 authored by wind2009's avatar wind2009

Fix 未来への沈黙

检索和抽卡应该不同时处理
parent 00b59693
......@@ -65,14 +65,10 @@ function s.dactivate(e,tp,eg,ep,ev,re,r,rp)
if g:GetCount()>0 then
Duel.SendtoHand(g,nil,REASON_EFFECT)
Duel.ConfirmCards(1-tp,g)
end
local ct1=6-Duel.GetFieldGroupCount(tp,LOCATION_HAND,0)
local ct2=6-Duel.GetFieldGroupCount(tp,0,LOCATION_HAND)
if ct1>0 then
Duel.Draw(tp,ct1,REASON_EFFECT)
end
if ct2>0 then
Duel.Draw(1-tp,ct2,REASON_EFFECT)
end
if ct1>0 or ct2>0 then Duel.BreakEffect() end
if ct1>0 then Duel.Draw(tp,ct1,REASON_EFFECT) end
if ct2>0 then Duel.Draw(1-tp,ct2,REASON_EFFECT) end
end
\ No newline at end of file
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