Commit 69d9a324 authored by VanillaSalt's avatar VanillaSalt

fix

parent 84bd42fc
...@@ -16,7 +16,7 @@ function c359563.initial_effect(c) ...@@ -16,7 +16,7 @@ function c359563.initial_effect(c)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
function c359563.filter(c,e,tp) function c359563.filter(c,e,tp)
return c:IsFaceup() and c:GetSummonPlayer()==1-tp and (not e or c:IsRelateToEffect(e)) return c:IsFaceup() and c:IsCanTurnSet() and c:GetSummonPlayer()==1-tp and (not e or c:IsRelateToEffect(e))
end end
function c359563.cost(e,tp,eg,ep,ev,re,r,rp,chk) function c359563.cost(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return e:GetHandler():CheckRemoveOverlayCard(tp,1,REASON_COST) end if chk==0 then return e:GetHandler():CheckRemoveOverlayCard(tp,1,REASON_COST) end
......
...@@ -12,7 +12,7 @@ function c77428945.initial_effect(c) ...@@ -12,7 +12,7 @@ function c77428945.initial_effect(c)
c:RegisterEffect(e1) c:RegisterEffect(e1)
end end
function c77428945.filter(c) function c77428945.filter(c)
return c:IsFaceup() and bit.band(c:GetSummonType(),SUMMON_TYPE_SPECIAL)~=0 return c:IsFaceup() and c:IsCanTurnSet() and bit.band(c:GetSummonType(),SUMMON_TYPE_SPECIAL)~=0
end end
function c77428945.target(e,tp,eg,ep,ev,re,r,rp,chk) function c77428945.target(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return true end if chk==0 then return true 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