Commit 482d2544 authored by salix5's avatar salix5

fix

revert Double Magical Arm Bind
parent 778d389d
...@@ -53,11 +53,8 @@ function c72621670.activate(e,tp,eg,ep,ev,re,r,rp) ...@@ -53,11 +53,8 @@ function c72621670.activate(e,tp,eg,ep,ev,re,r,rp)
dg:Clear() dg:Clear()
end end
local tc=sg:GetFirst() local tc=sg:GetFirst()
local tct=1
if Duel.GetTurnPlayer()~=tp then tct=2
elseif Duel.GetCurrentPhase()==PHASE_END then tct=3 end
while tc do while tc do
Duel.GetControl(tc,tp,PHASE_END+RESET_SELF_TURN,tct) Duel.GetControl(tc,tp,PHASE_END+RESET_SELF_TURN,1)
tc=sg:GetNext() tc=sg:GetNext()
end end
if dg:GetCount()>0 then Duel.Destroy(dg,REASON_RULE) end if dg:GetCount()>0 then Duel.Destroy(dg,REASON_RULE) end
......
...@@ -33,9 +33,9 @@ function c7914843.operation(e,tp,eg,ep,ev,re,r,rp) ...@@ -33,9 +33,9 @@ function c7914843.operation(e,tp,eg,ep,ev,re,r,rp)
local tct=1 local tct=1
if Duel.GetTurnPlayer()~=tp then tct=2 if Duel.GetTurnPlayer()~=tp then tct=2
elseif Duel.GetCurrentPhase()==PHASE_END then tct=3 end elseif Duel.GetCurrentPhase()==PHASE_END then tct=3 end
if tc:IsFaceup() and tc:IsRelateToEffect(e) and not Duel.GetControl(tc,tp,PHASE_END,tct) then if tc:IsFaceup() and tc:IsRelateToEffect(e) and tc:IsRace(RACE_MACHINE) and not Duel.GetControl(tc,tp,PHASE_END,tct) then
if not tc:IsImmuneToEffect(e) and tc:IsAbleToChangeControler() then if not tc:IsImmuneToEffect(e) and tc:IsAbleToChangeControler() then
Duel.Destroy(tc,REASON_EFFECT) Duel.Destroy(tc,REASON_RULE)
end end
end end
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