Skip to content

Commit d5a585e

Browse files
authored
Update "Cyberdark Wurm"
Fixed a bug where it would be unable to add a "Cybernetic" card to the hand
1 parent 0ac0c37 commit d5a585e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pre-release/c101208027.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk)
4646
Duel.SetPossibleOperationInfo(0,CATEGORY_TOHAND,nil,1,tp,LOCATION_GRAVE)
4747
end
4848
function s.thfilter(c)
49-
return c:IsSetCard(SET_CYBER) and c:IsSpellTrap() and c:IsAbleToHand()
49+
return c:IsSetCard({SET_CYBER,SET_CYBERNETIC}) and c:IsSpellTrap() and c:IsAbleToHand()
5050
end
5151
function s.spop(e,tp,eg,ep,ev,re,r,rp)
5252
local c=e:GetHandler()
@@ -60,4 +60,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp)
6060
Duel.ConfirmCards(1-tp,sg)
6161
end
6262
end
63-
end
63+
end

0 commit comments

Comments
 (0)