From 3b5c577ba5fac8bba872aef5c2635d4bbb7397f1 Mon Sep 17 00:00:00 2001 From: Naim Date: Thu, 30 Nov 2023 18:09:15 -0300 Subject: [PATCH] "Rise-Rank-Up-Magic Raidraptor's Force" fix Fixed a bug where it would not treat the monster as properly Xyz summoned --- official/c38044854.lua | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/official/c38044854.lua b/official/c38044854.lua index 93a20bfc4c..7c3bba2e73 100644 --- a/official/c38044854.lua +++ b/official/c38044854.lua @@ -15,7 +15,7 @@ function s.initial_effect(c) e1:SetCondition(function(e,tp) return Duel.IsMainPhase() or (Duel.IsTurnPlayer(1-tp) and Duel.IsBattlePhase()) end) e1:SetTarget(s.target) e1:SetOperation(s.activate) - c:RegisterEffect(e1) + c:RegisterEffect(e1) end s.listed_series={SET_RAIDRAPTOR} function s.tgfilter(c,tp) @@ -46,8 +46,9 @@ function s.activate(e,tp,eg,ep,ev,re,r,rp) Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON) local sc=Duel.SelectMatchingCard(tp,s.spfilter,tp,LOCATION_EXTRA,0,1,1,nil,e,tp,tg:GetSum(Card.GetRank)):GetFirst() if sc and Duel.SpecialSummon(sc,SUMMON_TYPE_XYZ,tp,tp,false,false,POS_FACEUP)>0 then + sc:CompleteProcedure() tg=tg:Match(aux.NOT(Card.IsImmuneToEffect),nil,e) if #tg==0 then return end Duel.Overlay(sc,tg) end -end +end \ No newline at end of file