Commit cdfc2564 authored by mercury233's avatar mercury233

fix

parent 9ff904ad
...@@ -51,7 +51,7 @@ function c65993085.operation(e,tp,eg,ep,ev,re,r,rp) ...@@ -51,7 +51,7 @@ function c65993085.operation(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler() local c=e:GetHandler()
local tc=Duel.GetFirstTarget() local tc=Duel.GetFirstTarget()
if c:IsRelateToEffect(e) and tc:IsRelateToEffect(e) then if c:IsRelateToEffect(e) and tc:IsRelateToEffect(e) then
if Duel.SpecialSummon(tc,0,tp,tp,false,false,POS_FACEUP)==0 then return end if Duel.SpecialSummonStep(tc,0,tp,tp,false,false,POS_FACEUP) then
Duel.Equip(tp,c,tc) Duel.Equip(tp,c,tc)
--Add Equip limit --Add Equip limit
local e1=Effect.CreateEffect(c) local e1=Effect.CreateEffect(c)
...@@ -63,6 +63,8 @@ function c65993085.operation(e,tp,eg,ep,ev,re,r,rp) ...@@ -63,6 +63,8 @@ function c65993085.operation(e,tp,eg,ep,ev,re,r,rp)
e1:SetLabelObject(tc) e1:SetLabelObject(tc)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
Duel.SpecialSummonComplete()
end
end end
function c65993085.eqlimit(e,c) function c65993085.eqlimit(e,c)
return e:GetLabelObject()==c return e:GetLabelObject()==c
......
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