Skip to content

Commit 7b8a7be

Browse files
authored
"Apex Polymerization" fix
Shouldn't be able to use any other monsters for the Fusion Summon apart from the targeted monster and the Special Summoned monster.
1 parent f8902a7 commit 7b8a7be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pre-release/c101304069.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ function s.fextra(tc,sc)
6666
end
6767
function s.fcheck(tc,sc)
6868
return function(tp,sg,fc)
69-
return sg:IsContains(tc) and sg:IsContains(sc)
69+
return #sg==2 and sg:IsContains(tc) and sg:IsContains(sc)
7070
end
71-
end
71+
end

0 commit comments

Comments
 (0)