Commit f57fe171 authored by Wind's avatar Wind

fix

parent b713755d
...@@ -123,7 +123,7 @@ function Auxiliary.SinglePick(p,list,count,ex_list,ex_count,copy,lv_diff,fixed,p ...@@ -123,7 +123,7 @@ function Auxiliary.SinglePick(p,list,count,ex_list,ex_count,copy,lv_diff,fixed,p
if packed then if packed then
while true do while true do
local thispack=math.random(#packed) local thispack=math.random(#packed)
if thispack-=lastpack then if thispack~=lastpack then
lastpack=thispack lastpack=thispack
for code in pairs(packed[thispack]) do for code in pairs(packed[thispack]) do
local card=Duel.CreateToken(p,code) local card=Duel.CreateToken(p,code)
...@@ -229,7 +229,7 @@ function Auxiliary.StartPick(e) ...@@ -229,7 +229,7 @@ function Auxiliary.StartPick(e)
end end
end end
for p=0,1 do for p=0,1 do
Auxiliary.SinglePick(p,list,0,ex_list,0,false,false,nil,event_fusion_main) Auxiliary.SinglePick(p,list,0,nil,nil,false,false,nil,event_fusion_main)
end end
for tp,list in pairs(extra_sp) do for tp,list in pairs(extra_sp) do
if tp~=TYPE_FUSION then if tp~=TYPE_FUSION then
......
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