Commit 93a3605e authored by 独孤朲's avatar 独孤朲

Merge pull request #950 from salix5/fix-sptr

fix-SPTR
parents 821dd91a 8ef78a0d
......@@ -82,7 +82,7 @@ function c28630501.rettg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function c28630501.retop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if c:IsRelateToEffect(e) and c:IsFaceup() then
if c:IsRelateToEffect(e) then
Duel.SendtoHand(c,nil,REASON_EFFECT)
end
end
......@@ -74,7 +74,7 @@ function c39853199.rettg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function c39853199.retop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if c:IsRelateToEffect(e) and c:IsFaceup() then
if c:IsRelateToEffect(e) then
Duel.SendtoHand(c,nil,REASON_EFFECT)
end
end
......@@ -85,7 +85,7 @@ function c65247798.rettg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function c65247798.retop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if c:IsRelateToEffect(e) and c:IsFaceup() then
if c:IsRelateToEffect(e) then
Duel.SendtoHand(c,nil,REASON_EFFECT)
end
end
......@@ -71,7 +71,7 @@ function c92246806.rettg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function c92246806.retop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if c:IsRelateToEffect(e) and c:IsFaceup() then
if c:IsRelateToEffect(e) then
Duel.SendtoHand(c,nil,REASON_EFFECT)
end
end
......@@ -102,7 +102,7 @@ function c93368494.rettg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function c93368494.retop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if c:IsRelateToEffect(e) and c:IsFaceup() then
if c:IsRelateToEffect(e) then
Duel.SendtoHand(c,nil,REASON_EFFECT)
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