Commit 4622e532 authored by sidschingis's avatar sidschingis

fix

c81788994 fixed counting non monster cards
parent 40c17ae8
...@@ -33,7 +33,7 @@ function c81788994.initial_effect(c) ...@@ -33,7 +33,7 @@ function c81788994.initial_effect(c)
c:RegisterEffect(e4) c:RegisterEffect(e4)
end end
function c81788994.cfilter(c) function c81788994.cfilter(c)
return c:IsSetCard(0x9d) and c:IsReason(REASON_EFFECT) and not c:IsReason(REASON_RETURN) return c:IsSetCard(0x9d) and c:IsType(TYPE_MONSTER) and c:IsReason(REASON_EFFECT) and not c:IsReason(REASON_RETURN)
end end
function c81788994.ctcon(e,tp,eg,ep,ev,re,r,rp) function c81788994.ctcon(e,tp,eg,ep,ev,re,r,rp)
return eg:IsExists(c81788994.cfilter,1,nil) return eg:IsExists(c81788994.cfilter,1,nil)
......
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