Skip to content

Commit d94cfa3

Browse files
committed
"Draco Stand-off" fix
Fixed a bug where it would be possible to activate its second effect even when the player did not have an available Spell/Trap Zone
1 parent 44307f7 commit d94cfa3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

official/c66092596.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ end
7171
function s.pltg(e,tp,eg,ep,ev,re,r,rp,chk,chkc)
7272
local g=e:GetLabelObject():Filter(s.plfilter,nil,e,tp)
7373
if chkc then return g:IsContains(chkc) and s.plfilter(chkc,e,tp) end
74-
if chk==0 then return #g>0 end
74+
if chk==0 then return Duel.GetLocationCount(tp,LOCATION_SZONE)>0 and #g>0 end
7575
local tc=nil
7676
if #g>1 then
7777
Duel.Hint(HINT_SELECTMSG,tp,HINTMSG_TOFIELD)

0 commit comments

Comments
 (0)