Commit f98fe223 authored by nanahira's avatar nanahira

fix

parent fd22f2e3
...@@ -157,9 +157,11 @@ function Duel.SpecialSummonStep(c,...) ...@@ -157,9 +157,11 @@ function Duel.SpecialSummonStep(c,...)
end end
function Duel.SpecialSummon(g,...) function Duel.SpecialSummon(g,...)
local res=0 local res=0
local tg=g local tg=nil
if Auxiliary.GetValueType(g)=="Card" then if Auxiliary.GetValueType(g)=="Card" then
tg=Group.FromCards(g) tg=Group.FromCards(g)
else
tg=g:Clone()
end end
local groups={} local groups={}
groups[1]=tg:Filter(function(c) groups[1]=tg:Filter(function(c)
......
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