Commit feec929c authored by 伊蕾娜's avatar 伊蕾娜

fix:c74561037.lua修复月斗杂交兔2效果没检测type_monster的bug

parent ef48c6e5
Pipeline #11437 passed with stage
in 40 seconds
......@@ -30,7 +30,7 @@ function cCardno.initial_effect(c)
end
--copy
function cCardno.cpfilter(c)
return c:IsSetCard(0x256) or c:IsSetCard(0x258)
return c:IsType(TYPE_MONSTER) and (c:IsSetCard(0x256) or c:IsSetCard(0x258))
end
function cCardno.cptg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_GRAVE) and chkc:IsControler(tp) and cCardno.cpfilter(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