Commit e49673be authored by Nemo Ma's avatar Nemo Ma

fix

parent 15886ea0
......@@ -47,7 +47,7 @@ function c72411050.operation1(e,tp,eg,ep,ev,re,r,rp,chk)
end
end
function c72411050.filterb(c,e,tp)
return ((c:IsSetCard(0x5729) and c:IsType(TYPE_SPELL)) or (c:IsSetCard(0x5729) or Duel.IsPlayerAffectedByEffect(tp,72413440))) and c:IsAbleToDeck() and c:IsCanBeEffectTarget(e)
return ((c:IsSetCard(0x5729) and c:IsType(TYPE_SPELL)) or (c:GetType()==TYPE_SPELL and Duel.IsPlayerAffectedByEffect(tp,72413440))) and c:IsAbleToDeck() and c:IsCanBeEffectTarget(e)
end
function c72411050.target2(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return false end
......
......@@ -41,7 +41,7 @@ function c72411060.operation1(e,tp,eg,ep,ev,re,r,rp)
end
function c72411060.cpfilter(c,exc,e,tp,eg,ep,ev,re,r,rp)
local te=c:CheckActivateEffect(true,true,false)
if not (c:IsSetCard(0x5729) and c:GetType()==TYPE_SPELL and c:IsAbleToRemoveAsCost() and te and te:GetOperation()) then return false end
if not ((c:IsSetCard(0x5729) or Duel.IsPlayerAffectedByEffect(tp,72413440)) and c:GetType()==TYPE_SPELL and c:IsAbleToRemoveAsCost() and te and te:GetOperation()) then return false end
local tg=te:GetTarget()
return (not tg) or tg(e,tp,eg,ep,ev,re,r,rp,0,nil,exc)
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