Commit ddcb3649 authored by wyykak's avatar wyykak

fix 82434 & 82435

Signed-off-by: wyykak's avatarwyykak <wyy_1414@126.com>
parent cf49e059
Pipeline #36782 passed with stage
in 34 seconds
......@@ -36,7 +36,7 @@ function c82434.initial_effect(c)
c:RegisterEffect(e3)
end
function c82434.counterfilter(c)
return c:GetSummonLocation()~=LOCATION_EXTRA and c:GetType()==TYPE_XYZ
return not (c:GetSummonLocation()==LOCATION_EXTRA and c:GetType()~=TYPE_XYZ)
end
function c82434.spfilter(c)
return c:IsFaceup() and c:GetLevel()>0
......
......@@ -36,7 +36,7 @@ function c82435.initial_effect(c)
c:RegisterEffect(e3)
end
function c82435.counterfilter(c)
return c:GetSummonLocation()~=LOCATION_EXTRA and c:GetType()==TYPE_XYZ
return not (c:GetSummonLocation()==LOCATION_EXTRA and c:GetType()~=TYPE_XYZ)
end
function c82435.spfilter(c)
return c:IsFaceup() and c:GetLevel()>0
......
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