Commit bb2d9e46 authored by nanahira's avatar nanahira

fix

parent bb949386
...@@ -31,7 +31,7 @@ end ...@@ -31,7 +31,7 @@ end
local old_fromex=Duel.GetLocationCountFromEx local old_fromex=Duel.GetLocationCountFromEx
function Duel.GetLocationCountFromEx(tp,...) function Duel.GetLocationCountFromEx(tp,...)
local c=select(3,...) local c=select(3,...)
if not c or not c:IsType(TYPE_LINK) then if not c or c:IsType(TYPE_FUSION+TYPE_SYNCHRO+TYPE_XYZ) then
return old_fromex(tp,...) return old_fromex(tp,...)
end end
forced_to_extra[tp]=true forced_to_extra[tp]=true
...@@ -173,7 +173,7 @@ function Duel.SpecialSummon(g,...) ...@@ -173,7 +173,7 @@ function Duel.SpecialSummon(g,...)
groups[3]=tg groups[3]=tg
for i=1,3 do for i=1,3 do
for tc in Auxiliary.Next(groups[i]) do for tc in Auxiliary.Next(groups[i]) do
if Duel.SpecialSummonStep(c,...) then res=res+1 end if Duel.SpecialSummonStep(tc,...) then res=res+1 end
end end
end end
Duel.SpecialSummonComplete() Duel.SpecialSummonComplete()
......
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