Skip to content

Commit aceb5c0

Browse files
committed
"Tri-Brigade Springans Kitt" fix
Fixed a bug in which it would be possible to Special Summon the monster from the GY in Attack position, when it should only be summoned in Defense position
1 parent b4e214f commit aceb5c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

official/c19304410.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function s.selfspop(e,tp,eg,ep,ev,re,r,rp)
4848
end
4949
function s.gyspfilter(c,e,tp)
5050
return (c:IsSetCard({SET_TRI_BRIGADE,SET_SPRINGANS}) or (c:IsCode(CARD_ALBAZ) or c:ListsCode(CARD_ALBAZ))) and not c:IsCode(id)
51-
and c:IsCanBeSpecialSummoned(e,0,tp,false,false)
51+
and c:IsCanBeSpecialSummoned(e,0,tp,false,false,POS_FACEUP_DEFENSE)
5252
end
5353
function s.gysptg(e,tp,eg,ep,ev,re,r,rp,chk)
5454
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0
@@ -60,6 +60,6 @@ function s.gyspop(e,tp,eg,ep,ev,re,r,rp)
6060
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_SPSUMMON)
6161
local g=Duel.SelectMatchingCard(tp,s.gyspfilter,tp,LOCATION_GRAVE,0,1,1,nil,e,tp)
6262
if #g>0 then
63-
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP)
63+
Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP_DEFENSE)
6464
end
6565
end

0 commit comments

Comments
 (0)