Commit cac3f6e0 authored by wind2009's avatar wind2009

Fix 千年の十字

修复魔法与陷阱区域的被封印怪兽不能被确认的bug
parent b3297dd2
Pipeline #25244 passed with stages
in 1 minute and 4 seconds
......@@ -10,7 +10,7 @@ function s.initial_effect(c)
c:RegisterEffect(e1)
end
function s.filter(c,e,tp)
return c:IsFaceupEx() and c:IsSetCard(0x40) and c:IsType(TYPE_MONSTER)
return c:IsFaceupEx() and c:IsSetCard(0x40) and bit.band(c:GetOriginalType(),TYPE_MONSTER)~=0
end
function s.spfilter(c,e,tp)
return c:IsCode(101205033)
......
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