Commit a7a38ab8 authored by mercury233's avatar mercury233

fix typo

parent 70faac89
......@@ -65,7 +65,7 @@ function c10833828.spop1(e,tp,eg,ep,ev,re,r,rp)
e2:SetCode(EFFECT_DISABLE_EFFECT)
e2:SetReset(RESET_EVENT+RESETS_STANDARD)
tc:RegisterEffect(e2,true)
tc:RegisterFlagEffect(10833828,RESET_EVENT+RESETS_STANDARD,0,1,c:GetFieldId())
tc:RegisterFlagEffect(10833828,RESET_EVENT+RESETS_STANDARD,0,1,c:GetFieldID())
end
Duel.SpecialSummonComplete()
end
......
......@@ -27,13 +27,13 @@ function c4869446.posop(e,tp,eg,ep,ev,re,r,rp)
local g=eg:Filter(c4869446.cfilter,nil)
local tc=g:GetFirst()
while tc do
tc:RegisterFlagEffect(4869446,RESET_EVENT+RESETS_STANDARD,0,1,e:GetHandler():GetFieldId())
tc:RegisterFlagEffect(4869446,RESET_EVENT+RESETS_STANDARD,0,1,e:GetHandler():GetFieldID())
tc=g:GetNext()
end
end
function c4869446.postg(e,c)
for _,flag in ipairs({c:GetFlagEffectLabel(4869446)}) do
if flag==e:GetHandler():GetFieldId() then return true end
if flag==e:GetHandler():GetFieldID() then return true end
end
return false
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