Commit 4249838e authored by wind2009's avatar wind2009 Committed by DailyShana

Fix Infinite Impermanence (#1210)

parent 4d305c56
...@@ -18,7 +18,7 @@ function c10045474.initial_effect(c) ...@@ -18,7 +18,7 @@ function c10045474.initial_effect(c)
c:RegisterEffect(e2) c:RegisterEffect(e2)
end end
function c10045474.disfilter(c) function c10045474.disfilter(c)
return c:IsFaceup() and not c:IsDisabled() and not c:IsType(TYPE_NORMAL) return c:IsFaceup() and not c:IsDisabled() and c:IsType(TYPE_EFFECT)
end end
function c10045474.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc) function c10045474.target(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_MZONE) and chkc:IsControler(1-tp) and c10045474.disfilter(chkc) end if chkc then return chkc:IsLocation(LOCATION_MZONE) and chkc:IsControler(1-tp) and c10045474.disfilter(chkc) 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