Commit 9ec9e5e2 authored by wind2009's avatar wind2009 Committed by GitHub

Update procedure.lua (#2429)

Add ``HintSelection()`` for **Auxiliary.tdcfop()** when using material from LOCATION_GRAVE/LOCATION_REMOVED (for Phantom of Yubel)
parent 72457579
......@@ -1708,6 +1708,10 @@ function Auxiliary.tdcfop(c)
if cg:GetCount()>0 then
Duel.ConfirmCards(1-c:GetControler(),cg)
end
local hg=g:Filter(Card.IsLocation,nil,LOCATION_GRAVE+LOCATION_REMOVED)
if hg:GetCount()>0 then
Duel.HintSelection(hg)
end
Duel.SendtoDeck(g,nil,SEQ_DECKSHUFFLE,REASON_COST)
end
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment