From fcab669e6dc826ee75f0e2c63afcdc39434b8e2e Mon Sep 17 00:00:00 2001 From: Playmaker1210 Date: Sat, 11 Dec 2021 16:34:27 +0100 Subject: [PATCH] Tuner Star monster effect fully working --- lua/c561586063.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/c561586063.lua b/lua/c561586063.lua index 851bf3f..7b0f673 100644 --- a/lua/c561586063.lua +++ b/lua/c561586063.lua @@ -43,7 +43,7 @@ function s.spcon(e,c) end -----Extra deck sp summon function s.filter(c,e,tp) - return c:IsFaceup() and c:IsType(TYPE_PENDULUM) and Duel.GetLocationCountFromEx(tp,tp,nil,c)>0 and c:IsCanBeSpecialSummoned(e,0,tp,false,false) + return c:IsFaceup() and c:IsType(TYPE_PENDULUM) and not c:IsType(TYPE_FUSION) and not c:IsType(TYPE_SYNCHRO) and not c:IsType(TYPE_XYZ) and Duel.GetLocationCountFromEx(tp,tp,nil,c)>0 and c:IsCanBeSpecialSummoned(e,0,tp,false,false) end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) if chk==0 then return Duel.IsExistingMatchingCard(s.filter,tp,LOCATION_EXTRA,0,1,nil,e,tp) end