Commit 45b95803 authored by POLYMER's avatar POLYMER

fix

parent 4f088734
......@@ -117,7 +117,7 @@ function cm.disop(e,tp,eg,ep,ev,re,r,rp)
end
end
end
if lastc then --c~=e:GetLabelObject() and --and (c:IsControler(1-Duel.GetTurnPlayer()) or not Duel.IsExistingMatchingCard(function(c) return c:IsFaceup() and c:IsType(TYPE_EFFECT) and not c:IsDisabled() end,Duel.GetTurnPlayer(),0,LOCATION_MZONE,1,nil)) then
if lastc and e:GetCode()==EVENT_CHAIN_SOLVING then --c~=e:GetLabelObject() and --and (c:IsControler(1-Duel.GetTurnPlayer()) or not Duel.IsExistingMatchingCard(function(c) return c:IsFaceup() and c:IsType(TYPE_EFFECT) and not c:IsDisabled() end,Duel.GetTurnPlayer(),0,LOCATION_MZONE,1,nil)) then
--cm.disop(c[c],tp,eg,ep,ev,re,r,rp)
Duel.RaiseEvent(c,EVENT_CUSTOM+m,re,r,rp,ep,ev)
end
......
......@@ -93,7 +93,7 @@ function c11662004.lvfilter1(c,tp)
return c11662004.lvfilter(c) and Duel.IsExistingMatchingCard(c11662004.lvfilter2,tp,LOCATION_MZONE,0,1,c,c:GetLevel())
end
function c11662004.lvfilter2(c,lv)
return c11662004.lvfilter(c) and not c:IsLevel(lv)
return c:IsFaceup() and c:IsLevelAbove(1) and not c:IsLevel(lv)
end
function c11662004.lvtg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
if chkc then return chkc:IsLocation(LOCATION_MZONE) and chkc:IsControler(tp) and c11662004.lvfilter1(chkc,tp) 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