Commit 4e2814d9 authored by Chrono-Genex's avatar Chrono-Genex Committed by GitHub

workaround fix Synchro Material (#2020)

parent 133d6a53
......@@ -35,7 +35,12 @@ function c14507213.activate(e,tp,eg,ep,ev,re,r,rp)
local e1=Effect.CreateEffect(e:GetHandler())
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_SYNCHRO_MATERIAL)
e1:SetOwnerPlayer(tp)
e1:SetCondition(c14507213.matcon)
e1:SetReset(RESET_EVENT+RESETS_STANDARD+RESET_PHASE+PHASE_END)
tc:RegisterEffect(e1)
end
end
function c14507213.matcon(e)
return e:GetHandler():IsControler(1-e:GetOwnerPlayer())
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