Commit 7a6bc6c7 authored by VanillaSalt's avatar VanillaSalt

fix

parent 944fa486
......@@ -39,7 +39,7 @@ function c51549976.activate(e,tp,eg,ep,ev,re,r,rp)
end
function c51549976.actcon(e)
local ph=Duel.GetCurrentPhase()
return ph>=PHASE_BATTLE and ph<=PHASE_DAMAGE_CAL
return ph>PHASE_MAIN1 and ph<PHASE_MAIN2
end
function c51549976.aclimit(e,re,tp)
return re:GetHandler():IsType(TYPE_MONSTER) and re:GetHandler():IsLocation(LOCATION_HAND+LOCATION_GRAVE)
......
......@@ -12,7 +12,7 @@ function c56532632.initial_effect(c)
end
function c56532632.condition(e,tp,eg,ep,ev,re,r,rp)
local ph=Duel.GetCurrentPhase()
return ep~=tp and ph>=PHASE_BATTLE and ph<=PHASE_DAMAGE_CAL
return ep~=tp and ph>PHASE_MAIN1 and ph<PHASE_MAIN2
and re:IsActiveType(TYPE_MONSTER) and Duel.IsChainNegatable(ev)
end
function c56532632.target(e,tp,eg,ep,ev,re,r,rp,chk)
......
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