Commit 7832ff4d authored by mercury233's avatar mercury233 Committed by GitHub

fix

parent 3b19f106
...@@ -65,7 +65,9 @@ function c95493471.drop(e,tp,eg,ep,ev,re,r,rp) ...@@ -65,7 +65,9 @@ function c95493471.drop(e,tp,eg,ep,ev,re,r,rp)
Duel.Draw(p,d,REASON_EFFECT) Duel.Draw(p,d,REASON_EFFECT)
end end
function c95493471.cfilter2(c,tp,zone) function c95493471.cfilter2(c,tp,zone)
return c:IsPreviousLocation(LOCATION_MZONE) and bit.extract(zone,c:GetPreviousSequence())~=0 and c:IsType(TYPE_XYZ) local seq=c:GetPreviousSequence()
if c:GetPreviousControler()~=tp then seq=seq+16 end
return c:IsPreviousLocation(LOCATION_MZONE) and bit.extract(zone,seq)~=0 and c:IsType(TYPE_XYZ)
and (c:IsReason(REASON_BATTLE) or c:IsReason(REASON_EFFECT) and c:GetReasonPlayer()==1-tp) and (c:IsReason(REASON_BATTLE) or c:IsReason(REASON_EFFECT) and c:GetReasonPlayer()==1-tp)
end end
function c95493471.spcon(e,tp,eg,ep,ev,re,r,rp) function c95493471.spcon(e,tp,eg,ep,ev,re,r,rp)
......
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