Commit d14b973d authored by salix5's avatar salix5

Merge pull request #358 from destdev/patch-4

fix Conscription
parents 0e30482b 3f3d3c39
...@@ -20,9 +20,12 @@ function c31000575.operation(e,tp,eg,ep,ev,re,r,rp) ...@@ -20,9 +20,12 @@ function c31000575.operation(e,tp,eg,ep,ev,re,r,rp)
if tc:IsSummonableCard() and tc:IsCanBeSpecialSummoned(e,0,tp,false,false) then if tc:IsSummonableCard() and tc:IsCanBeSpecialSummoned(e,0,tp,false,false) then
Duel.DisableShuffleCheck() Duel.DisableShuffleCheck()
Duel.SpecialSummon(tc,0,tp,tp,false,false,POS_FACEUP) Duel.SpecialSummon(tc,0,tp,tp,false,false,POS_FACEUP)
else elseif tc:IsAbleToHand() then
Duel.DisableShuffleCheck() Duel.DisableShuffleCheck()
Duel.SendtoHand(tc,nil,REASON_EFFECT) Duel.SendtoHand(tc,nil,REASON_EFFECT)
Duel.ShuffleHand(1-tp) Duel.ShuffleHand(1-tp)
else
Duel.DisableShuffleCheck()
Duel.SendtoGrave(tc,REASON_RULE)
end end
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