Commit 93926d00 authored by POLYMER's avatar POLYMER

fix

parent ad68e012
......@@ -86,7 +86,13 @@ function cm.activate(e,tp,eg,ep,ev,re,r,rp)
Duel.ShuffleDeck(tp)
e:SetLabelObject(te:GetLabelObject())
local op=te:GetOperation()
if op then op(e,tp,eg,ep,ev,re,r,rp) end
if op then
if e:GetCode()==EVENT_CHAINING then
op(e,tp,eg,ep,ev,re,r,rp)
else
op(e,tp,Group.FromCards(te:GetHandler()),PLAYER_NONE,ev,te,r,PLAYER_NONE)
end
end
end
end
function cm.rscon(e,tp,eg,ep,ev,re,r,rp)
......
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