Commit ac738046 authored by DailyShana's avatar DailyShana

fix

parent 68c5a7f6
...@@ -84,6 +84,8 @@ function c10960419.rmop(e,tp,eg,ep,ev,re,r,rp) ...@@ -84,6 +84,8 @@ function c10960419.rmop(e,tp,eg,ep,ev,re,r,rp)
e1:SetCountLimit(1) e1:SetCountLimit(1)
e1:SetOperation(c10960419.retop) e1:SetOperation(c10960419.retop)
Duel.RegisterEffect(e1,tp) Duel.RegisterEffect(e1,tp)
tc:RegisterFlagEffect(1082946,RESET_PHASE+RESET_STANDBY,0,ct)
c10960419[tc]=e1
end end
end end
end end
...@@ -92,7 +94,10 @@ function c10960419.retop(e,tp,eg,ep,ev,re,r,rp) ...@@ -92,7 +94,10 @@ function c10960419.retop(e,tp,eg,ep,ev,re,r,rp)
local ct=tc:GetTurnCounter() local ct=tc:GetTurnCounter()
ct=ct+1 ct=ct+1
tc:SetTurnCounter(ct) tc:SetTurnCounter(ct)
if ct==e:GetLabel() then if ct==e:GetLabel() and Duel.GetCurrentPhase()==PHASE_STANDBY then
Duel.ReturnToField(tc) Duel.ReturnToField(tc)
end end
if ct>=e:GetLabel() then
tc:ResetFlagEffect(1082946)
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