You need to sign in or sign up before continuing.
Commit 63b9c868 authored by sidschingis's avatar sidschingis

fix

fixed triggering when the opponent controlled the monster before it
returns to the hand
parent 97c5cc87
......@@ -54,7 +54,7 @@ end
function c48716139.retcon(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
local ec=c:GetPreviousEquipTarget()
return c:IsReason(REASON_LOST_TARGET) and (ec:GetLocation()==LOCATION_HAND)
return c:IsReason(REASON_LOST_TARGET) and (ec:GetLocation()==LOCATION_HAND) and ec:GetPreviousControler()==tp
end
function c48716139.rettg(e,tp,eg,ep,ev,re,r,rp,chk)
if chk==0 then return true 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