Skip to content

Commit 4081cc3

Browse files
committed
fixed Power Shockborg
1 parent 2194947 commit 4081cc3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rush/c160023022.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ function s.filter(c)
2626
return c:IsFaceup() and c:IsRace(RACE_MACHINE)
2727
end
2828
function s.target(e,tp,eg,ep,ev,re,r,rp,chk)
29-
if chk==0 then return Duel.IsExistingMatchingCard(s.filter,tp,LOCATION_MZONE,0,1,nil) end
29+
if chk==0 then return Duel.IsExistingMatchingCard(s.filter,tp,LOCATION_MZONE,LOCATION_MZONE,1,nil) end
3030
end
3131
function s.operation(e,tp,eg,ep,ev,re,r,rp)
3232
local c=e:GetHandler()
3333
--Requirement
3434
if Duel.DiscardDeck(tp,1,REASON_COST)<1 then return end
3535
--Effect
3636
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_ATKDEF)
37-
local g=Duel.SelectMatchingCard(tp,s.filter,tp,LOCATION_MZONE,0,1,1,nil)
37+
local g=Duel.SelectMatchingCard(tp,s.filter,tp,LOCATION_MZONE,LOCATION_MZONE,1,1,nil)
3838
if #g>0 then
3939
Duel.HintSelection(g)
4040
local tc=g:GetFirst()

0 commit comments

Comments
 (0)