We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb329a commit fda5fceCopy full SHA for fda5fce
1 file changed
unofficial/c100000490.lua
@@ -23,8 +23,8 @@ function s.registerxyzmateffect(e,tp)
23
Duel.RegisterEffect(matEff,tp)
24
return matEff
25
end
26
-function s.xyzfilter(c,mg,fg,minc,maxg)
27
- return c:IsXyzSummonable(mg,fg,minc,maxg)
+function s.xyzfilter(c,mg,minc,maxc)
+ return c:IsXyzSummonable(nil,mg,minc,maxc)
28
29
function s.rescon(exg)
30
return function(sg)
@@ -51,7 +51,7 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
51
local c=e:GetHandler()
52
local g=Duel.GetTargetCards(e)
53
local matEff=s.registerxyzmateffect(e,tp)
54
- local xyzg=Duel.GetMatchingGroup(s.xyzfilter,tp,LOCATION_EXTRA,0,nil,nil,g,#g,#g)
+ local xyzg=Duel.GetMatchingGroup(s.xyzfilter,tp,LOCATION_EXTRA,0,nil,g,#g,#g)
55
if #xyzg>0 then
56
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
57
local xyz=xyzg:Select(tp,1,1,nil):GetFirst()
@@ -67,4 +67,4 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp)
67
else
68
matEff:Reset()
69
70
-end
+end
0 commit comments