Commit 430aa9cb authored by 花桃白音's avatar 花桃白音

fix #819s

parent e47bdb2d
......@@ -43,10 +43,10 @@ function cm.initial_effect(c)
end
--linksummon
function cm.limcon(e)
return e:GetHandler():GetSequence()<5
return e:GetHandler():GetSequence()<=5
end
function cm.limcon2(e)
return e:GetHandler():GetSequence()>=5
return e:GetHandler():GetSequence()>5
end
function cm.lfilter(c)
return c:IsRace(RACE_PSYCHO) and c:IsType(TYPE_EFFECT) and c:IsType(TYPE_MONSTER)
......
......@@ -54,7 +54,7 @@ function cm.initial_effect(c)
end
--linksummon
function cm.limcon(e)
return e:GetHandler():GetSequence()<5
return e:GetHandler():GetSequence()<=5
end
function cm.lfilter(c)
return c:IsRace(RACE_PSYCHO) and bit.band(c:GetType(),TYPE_MONSTER)~=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